
:root {
	--primary: #2389d9;
	--secondary: #3bb9f3;
	--accent: #fde057;
	--dark: #0a1a2d;
	--light: #f8fcff;
	--gradient-blue: linear-gradient(135deg, #2389d9, #1a5f9c);
	--gradient-gold: linear-gradient(to right, #fde057, #f9c449);
	--shadow-lg: 0 25px 50px -12px rgba(35, 137, 217, .25);
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, .3);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--light);
	color: var(--dark);
	overflow-x: hidden;
	position: relative;
}

section {
	position: relative;
}

/* === ANIMATED GEOMETRIC BACKGROUND === */
.bg-geometry {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -2;
	overflow: hidden;
	opacity: .03;
}

.geom-shape {
	position: absolute;
	background: var(--primary);
	border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	animation: floatShape 25s infinite linear;
	filter: blur(40px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 20px;
	text-align: center;
	font-size: .9rem;
	color: #cbd5e0;
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
}

@keyframes floatShape {
	0% {
		transform: translate(0, 0) rotate(0deg);
		border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	}
	
	25% {
		transform: translate(100px, 150px) rotate(90deg);
		border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
	}
	
	50% {
		transform: translate(200px, 50px) rotate(180deg);
		border-radius: 40% 60% 70% 30%/40% 50% 50% 60%;
	}
	
	75% {
		transform: translate(50px, 200px) rotate(270deg);
		border-radius: 70% 30% 50% 50%/30% 70% 30% 70%;
	}
	
	100% {
		transform: translate(0, 0) rotate(360deg);
		border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	}
}

/* === CREATIVE GLASS MORPHISM HEADER === */
header {
	position: fixed;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1200px;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(15px) saturate(180%);
	-webkit-backdrop-filter: blur(15px) saturate(180%);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, .3);
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	padding: 15px 30px;
	transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
}

header.scrolled {
	top: 10px;
	padding: 10px 30px;
	width: 95%;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* --- Logo with Neon Glow --- */
.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-glow {
	width: 70px;
	height: 70px;
	/* background: var(--gradient-blue); */
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* box-shadow: 0 0 25px rgba(35, 137, 217, 0.5),
                        inset 0 1px 1px rgba(255, 255, 255, 0.4); */
	position: relative;
	overflow: hidden;
	transition: all .5s ease;
}

.logo-glow::after {}

.logo-glow img {
	width: 79px;
	height: 79px;
	object-fit: contain;
	z-index: 2;
	position: relative;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

.logo-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: 1.8rem;
	background: #01429e;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
}

.logo-text span {
	display: block;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: 4px;
	color: #3bb9f3;
	margin-top: 5px;
}

/*extra*/
.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
	padding: 14px 30px;
	border-radius: 50px;
	background: var(--gradient-gold);
	color: var(--dark);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all .3s ease;
	box-shadow: 0 8px 20px rgba(253, 224, 87, .4);
}

.read-more-btn:hover {
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 14px 30px rgba(253, 224, 87, .6);
}

/*extra*/

/* --- Creative Navigation --- */
.main-nav ul {
	display: flex;
	list-style: none;
	gap: 8px;
}

.main-nav li {
	position: relative;
}

.nav-link {
	text-decoration: none;
	color: var(--dark);
	font-weight: 600;
	font-size: .95rem;
	padding: 12px 20px;
	border-radius: 50px;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #01429e;
	opacity: 0;
	z-index: -1;
	border-radius: 50px;
	transition: opacity .3s ease;
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link:hover {
	color: white;
	transform: translateY(-2px);
}

.nav-link i {
	font-size: .9rem;
}

/* --- Animated Products Dropdown --- */
.dropdown-content {
	position: absolute;
	top: 120%;
	left: 0;
	min-width: 280px;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	box-shadow: var(--shadow-xl);
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
	padding: 20px 0;
	border: 1px solid rgba(255, 255, 255, .4);
	z-index: 100;
}

.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(5px);
}

.dropdown-content a {
	padding: 14px 25px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	transition: all .2s ease;
	font-weight: 600;
}

.dropdown-content a:last-child {
	border-bottom: none;
}

.dropdown-content a:hover {
	background: rgba(35, 137, 217, .05);
	color: var(--primary);
	padding-left: 30px;
}

.dropdown-content i {
	color: var(--primary);
	width: 20px;
	text-align: center;
}

.menu-toggle {
	display: none;
}

/* === FULL-WIDTH HERO WITH PARALLAX === */
.hero {
	height: 100vh;
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

.hero-bg-parallax {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background: url("https://cdn-ilehdmk.nitrocdn.com/yJDQtKEmuraWtjKyKAwGXlXGNetkzvHn/assets/images/optimized/rev-cb93d00/billingpaperrollsmangalore.com/wp-content/uploads/2026/01/paper-roll-banner1.jpg") center/cover no-repeat, var(--gradient-blue);
	z-index: -1;
	will-change: transform;
}

.hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(10, 26, 45, .85) 30%, rgba(10, 26, 45, .5) 70%);
	z-index: -1;
}

.hero-content {
	max-width: 1200px;
	width: 90%;
	color: white;
	z-index: 2;
}

.hero h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 25px;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
}

.hero h1 .highlight {
	color: var(--accent);
	position: relative;
	display: inline-block;
}

.hero h1 .highlight::after {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 12px;
	background: rgba(253, 224, 87, .25);
	z-index: -1;
	border-radius: 3px;
}

.hero p {
	font-size: 1.3rem;
	max-width: 700px;
	margin-bottom: 40px;
	opacity: .9;
	line-height: 1.7;
}

.hero-cta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 35px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.05rem;
	transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-gold);
	color: var(--dark);
	box-shadow: 0 10px 25px rgba(253, 224, 87, .4);
}

.btn-primary:hover {
	transform: translateY(-5px) scale(1.03);
	box-shadow: 0 15px 35px rgba(253, 224, 87, .6);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, .4);
	backdrop-filter: blur(5px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: white;
	transform: translateY(-5px);
}

/* === ABOUT SECTION WITH TILT CARDS === */
.section-padding {
	padding: 50px 5%;
}

.section-title {
	text-align: center;
	margin-bottom: 80px;
}

.section-title h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 3.5rem;
	display: inline-block;
	position: relative;
	color: transparent;
	background: #01429e;
	-webkit-background-clip: text;
	background-clip: text;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 6px;
	background: var(--gradient-gold);
	border-radius: 3px;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-img-tilt {
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
	transition: transform .7s ease;
}

.about-img-tilt:hover {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.about-img-tilt img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
	transition: transform .7s ease;
}

.about-img-tilt:hover img {
	transform: scale(1.05);
}

.about-text p {
	font-size: 1.15rem;
	line-height: 1.9;
	margin-bottom: 25px;
	color: #444;
}

/* === MANUFACTURING SOLUTIONS - CREATIVE STACK === */
.manufacturing-stack {
	max-width: 1200px;
	margin: 0 auto;
}

.stack-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
}

.stack-item:nth-child(even) {
	grid-template-columns: 1fr 1fr;
	direction: rtl;
}

.stack-item:nth-child(even) .stack-content {
	direction: ltr;
}

.stack-content {
	padding: 40px;
}

.stack-title {
	font-family: "Montserrat", sans-serif;
	font-size: 35px;
	color: #01429e;
	margin-bottom: 25px;
	line-height: 35px;
}

.stack-title .title-accent {
	color: #3bb9f3;
	font-size: 20px;
	display: block;
}

.stack-text p {
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 25px;
	color: #555;
}

.feature-list {
	list-style: none;
	margin-top: 30px;
}

.feature-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	font-size: 1.05rem;
}

.feature-list i {
	color: var(--accent);
	margin-right: 15px;
	font-size: 1.3rem;
	background: #3bb9f3;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stack-visual {
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	height: 450px;
	position: relative;
	transform: translateY(0);
	transition: transform .5s ease;
}

.stack-visual:hover {
	transform: translateY(-15px);
}

.stack-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* === CREATIVE BLUE FOOTER === */
footer {
	background: linear-gradient(160deg, #01429e 0%, #1c5a8d 100%);
	color: white;
	padding: 100px 5% 40px;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--gradient-gold);
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 0px;
	position: relative;
	z-index: 2;
}

.footer-col {
	padding-left: 20px;
}

.footer-col h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.8rem;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.footer-col h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 16px;
}

.footer-links a {
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	transition: all .3s ease;
	display: inline-block;
	font-size: 1.05rem;
}

.footer-links a:hover {
	color: var(--accent);
	transform: translateX(8px);
}

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 22px;
	display: flex;
	align-items: flex-start;
}

.contact-info i {
	color: var(--accent);
	margin-right: 18px;
	font-size: 1.3rem;
	background: rgba(255, 255, 255, .1);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.copyright {
	text-align: center;
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, .15);
	color: rgba(255, 255, 255, .7);
	font-size: .95rem;
}

/* Hide WP Social Chat button only on post ID 2189 */
.postid-2795 #qlwapp {
	display: none !important;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
	.hero h1 {
		font-size: 3.8rem;
	}
	
	.stack-title {
		font-size: 2.4rem;
	}
	
	.main-nav ul {
		gap: 5px;
	}
	
	.nav-link {
		padding: 10px 16px;
		font-size: .9rem;
	}
}

@media (max-width: 992px) {
	.about-grid, .stack-item, .stack-item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 50px;
		direction: ltr;
	}
	
	.menu-toggle {
		display: block;
		background: var(--gradient-blue);
		color: white;
		border: none;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		font-size: 1.3rem;
		cursor: pointer;
		box-shadow: 0 5px 15px rgba(35, 137, 217, .3);
	}
	
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, .98);
		backdrop-filter: blur(15px);
		border-radius: 20px;
		box-shadow: var(--shadow-xl);
		padding: 25px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(20px);
		transition: all .4s ease;
	}
	
	.main-nav.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(10px);
	}
	
	.main-nav ul {
		flex-direction: column;
		gap: 10px;
	}
	
	.nav-link {
		justify-content: center;
		border-radius: 15px;
	}
	
	.dropdown-content {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(35, 137, 217, .05);
		margin-top: 10px;
		display: none;
	}
	
	.dropdown.active .dropdown-content {
		display: block;
	}
	
	.hero h1 {
		font-size: 3rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.section-title h2 {
		font-size: 2.8rem;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 700px;
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.section-padding {
		padding: 100px 5%;
	}
	
	.btn {
		padding: 16px 28px;
		font-size: 1rem;
	}
	
	.stack-title {
		font-size: 2rem;
	}
	
	.logo-text {
		font-size: 1.5rem;
	}
	
	.logo-glow {
		width: 60px;
		height: 60px;
	}
	
	.logo-glow img {
		width: 40px;
		height: 40px;
	}
}
