/* ==========================================================================
   Tirupati Glass Redesign Styles
   ========================================================================== */

/* 1. Global Topbar Removal */
.tg-site-topbar {
	display: none !important;
}

/* 2. Navbar Social Links removed from header */
.tg-navbar-social {
	display: none !important;
}

.tg-navbar-social .social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.7);
	color: #333 !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none !important;
}

.tg-navbar-social .social-icon svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
	transition: fill 0.3s;
}

.tg-navbar-social .social-icon:hover {
	transform: translateY(-3px);
	background: #EB3038;
	color: #fff !important;
	border-color: #EB3038;
	box-shadow: 0 8px 20px rgba(235, 48, 56, 0.35);
}

/* ==========================================================================
   Luxury Glassmorphism Carousel Styles
   ========================================================================== */

.luxury-hero-carousel {
	position: relative;
	width: 100%;
	height: 90vh;
	min-height: 600px;
	overflow: hidden;
	background: #0d0d0d;
	font-family: 'Inter', -apple-system, sans-serif;
	z-index: 10;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.carousel-slide.active {
	opacity: 1;
	z-index: 2;
}

.slide-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.08);
	transition: transform 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active .slide-bg-img {
	transform: scale(1);
}

/* Deep Architectural Overlay */
.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 2;
}

/* Glassmorphism Card Container */
.slide-container {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.slide-content-glass {
	width: 100%;
	max-width: 720px;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: none;
	border-radius: 0;
	padding: 0 20px;
	box-sizing: border-box;
	box-shadow: none;
	transform: translateY(30px);
	opacity: 0;
	transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

.carousel-slide.active .slide-content-glass {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.3s;
}

/* Slide Typography */
.slide-tag {
	display: inline-block;
	color: #EB3038;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 16px;
	border-bottom: 2px solid #EB3038;
	padding-bottom: 4px;
	transform: translateY(15px);
	opacity: 0;
	transition: all 0.8s ease;
}

.carousel-slide.active .slide-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.5s;
}

.slide-title {
	color: #ffffff !important;
	font-size: 54px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 18px 0;
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.015em;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.8s ease;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.carousel-slide.active .slide-title {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.6s;
}

.slide-title span {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	color: #FFD700 !important;
	display: inline-block;
}

.slide-desc {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 18px;
	line-height: 1.68;
	margin: 0 0 32px 0;
	font-weight: 400;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.8s ease;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.carousel-slide.active .slide-desc {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.7s;
}

/* Glass Buttons */
.slide-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.slide-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #EB3038;
	color: #fff !important;
	padding: 15px 32px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	box-shadow: 0 10px 24px rgba(235, 48, 56, 0.35);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(20px);
	opacity: 0;
}

.carousel-slide.active .slide-cta {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.8s;
}

.slide-cta:hover {
	background: #ffffff;
	color: #EB3038 !important;
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.slide-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff !important;
	padding: 15px 32px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(20px);
	opacity: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.carousel-slide.active .slide-cta-secondary {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.9s;
}

.slide-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* Slider Controls */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
	left: 30px;
}

.carousel-btn-next {
	right: 30px;
}

.carousel-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Indicators */
.carousel-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 12px;
	padding: 8px 18px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.carousel-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.4s ease;
}

.carousel-indicator.active {
	background: #EB3038;
	width: 28px;
	border-radius: 99px;
	box-shadow: 0 0 10px rgba(235, 48, 56, 0.6);
}

/* Responsive CSS */
@media (max-width: 1024px) {
	.slide-container {
		padding: 0 30px;
	}
	
	.slide-content-glass {
		max-width: 540px;
		padding: 40px;
	}
	
	.slide-title {
		font-size: 40px;
	}
}

@media (max-width: 768px) {
	.luxury-hero-carousel {
		height: 80vh;
		min-height: 500px;
	}

	.slide-container {
		padding: 0 20px;
	}

	.slide-content-glass {
		padding: 32px 24px;
		border-radius: 24px;
		margin: 0 auto;
		max-width: 100%;
	}

	.slide-title {
		font-size: 30px;
		margin-bottom: 12px;
	}

	.slide-desc {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.slide-cta,
	.slide-cta-secondary {
		padding: 12px 26px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}

	.slide-buttons {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.carousel-btn {
		display: none; /* Swipe controls will be used on mobile */
	}

	.carousel-indicators {
		bottom: 20px;
	}
}

/* Typewriter cursor style */
.typewriter-cursor {
	display: inline-block;
	color: #EB3038;
	font-weight: 300;
	margin-left: 6px;
	animation: typewriter-blink 0.8s infinite;
}

@keyframes typewriter-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* ==========================================================================
   Full Width Header & Navbar Styling (Prevents wrapping on desktop)
   ========================================================================== */
@media (min-width: 1025px) {
	.elementor-element-c50a72b {
		max-width: 100% !important;
		width: 100% !important;
	}

	.elementor-element-c50a72b > .e-con-inner {
		max-width: 100% !important;
		width: 100% !important;
		padding-left: 40px !important;
		padding-right: 40px !important;
		display: flex !important;
		flex-wrap: nowrap !important;
		justify-content: space-between !important;
		align-items: center !important;
	}

	.elementor-element-662d673 {
		flex-wrap: nowrap !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 20px !important;
		max-width: 85% !important;
		width: auto !important;
	}

	.elementor-element-15f2609 {
		width: auto !important;
		max-width: none !important;
	}
}

/* ==========================================================================
   Tirupati Glass Brand-New Premium UI Styles (Luxury & Executive Grade)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
	--tg-premium-bg: #070b12;
	--tg-premium-bg-light: #f9f9fb;
	--tg-premium-card-dark: rgba(17, 22, 34, 0.65);
	--tg-premium-card-light: rgba(255, 255, 255, 0.75);
	--tg-gold-grad: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
	--tg-crimson: #eb3038;
	--tg-crimson-glow: rgba(235, 48, 56, 0.15);
	--font-playfair: 'Playfair Display', serif;
	--font-outfit: 'Outfit', sans-serif;
	--tg-border-light: 1px solid rgba(255, 255, 255, 0.08);
	--tg-border-dark: 1px solid rgba(0, 0, 0, 0.06);
}

/* Global Premium Utilities */
.tg-section-padding {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.tg-luxury-heading {
	text-align: center;
	margin-bottom: 70px;
	position: relative;
}

.tg-luxury-heading .tg-pre-title {
	font-family: var(--font-outfit);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--tg-crimson);
	margin-bottom: 12px;
	display: block;
}

.tg-luxury-heading .tg-main-title {
	font-family: var(--font-playfair);
	font-size: 46px;
	font-weight: 700;
	color: #070b12;
	margin: 0;
	line-height: 1.25;
}

.tg-luxury-heading .tg-main-title span {
	background: var(--tg-gold-grad);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	display: inline-block;
}

.tg-luxury-heading.dark-theme .tg-main-title {
	color: #ffffff;
}

.tg-luxury-heading::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background: var(--tg-gold-grad);
	margin: 20px auto 0;
	border-radius: 99px;
}

/* Glass Card Global Styles */
.tg-glass-card {
	background: var(--tg-premium-card-dark);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: var(--tg-border-light);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Section 1: Asymmetrical Brand Showcase (About Us) */
.tg-premium-about {
	background: var(--tg-premium-bg-light);
	font-family: var(--font-outfit);
}

.tg-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-about-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tg-about-img-wrapper {
	position: relative;
	width: 85%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.tg-about-img-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tg-about-img-wrapper:hover img {
	transform: scale(1.08);
}

.tg-about-img-wrapper::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	pointer-events: none;
}

.tg-about-badge-card {
	position: absolute;
	bottom: -30px;
	left: -10px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	padding: 24px 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	max-width: 260px;
	animation: float-badge 6s ease-in-out infinite alternate;
}

@keyframes float-badge {
	0% { transform: translateY(0); }
	100% { transform: translateY(-12px); }
}

.tg-about-badge-card h4 {
	font-family: var(--font-playfair);
	font-size: 22px;
	color: #070b12;
	margin: 0 0 6px 0;
	font-weight: 700;
}

.tg-about-badge-card p {
	font-size: 13px;
	color: #666;
	margin: 0;
	font-weight: 500;
	line-height: 1.4;
}

.tg-about-content {
	padding-right: 20px;
}

.tg-about-content h2 {
	font-family: var(--font-playfair);
	font-size: 40px;
	color: #070b12;
	margin: 0 0 24px 0;
	line-height: 1.25;
}

.tg-about-content p {
	font-size: 16px;
	line-height: 1.75;
	color: #555;
	margin: 0 0 30px 0;
}

.tg-about-chips {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.tg-about-chip {
	background: #ffffff;
	border: var(--tg-border-dark);
	border-radius: 16px;
	padding: 20px 15px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.tg-about-chip:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.06);
	border-color: rgba(235, 48, 56, 0.2);
}

.tg-about-chip span {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	color: #070b12;
	display: block;
	margin-top: 8px;
	letter-spacing: 0.05em;
}

.tg-about-chip svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: var(--tg-crimson);
	stroke-width: 1.8;
}

/* Section 2: Executive Vision (Director's Message) */
.tg-executive-vision {
	background: #06090f;
	font-family: var(--font-outfit);
	position: relative;
}

.tg-executive-vision::before {
	content: '';
	position: absolute;
	top: -150px;
	right: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.tg-executive-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-executive-media {
	position: relative;
}

.tg-executive-img-box {
	position: relative;
	border-radius: 24px;
	padding: 10px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(235, 48, 56, 0.2) 100%);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tg-executive-img-box img {
	width: 100%;
	border-radius: 18px;
	display: block;
	transition: filter 0.4s ease;
}

.tg-executive-img-box:hover img {
	filter: brightness(1.05);
}

.tg-executive-glow {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	pointer-events: none;
}

.tg-executive-content {
	color: #ffffff;
}

.tg-executive-quote-icon {
	font-family: var(--font-playfair);
	font-size: 90px;
	line-height: 1;
	background: var(--tg-gold-grad);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	height: 50px;
	display: block;
	margin-bottom: -10px;
	opacity: 0.8;
}

.tg-executive-content h2 {
	font-family: var(--font-playfair);
	font-size: 38px;
	margin: 0 0 10px 0;
	color: #ffffff;
	font-weight: 700;
}

.tg-executive-title {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #d4af37;
	margin-bottom: 30px;
	display: block;
}

.tg-executive-text {
	font-size: 16px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 35px;
	font-style: italic;
}

.tg-executive-signature {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.tg-executive-sig-img {
	max-height: 50px;
	filter: invert(1);
	opacity: 0.8;
}

.tg-executive-sig-name {
	font-family: var(--font-playfair);
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
}

/* Section 3: Performance Counter Stats */
.tg-premium-stats {
	background: #080d17;
	padding: 70px 0;
	font-family: var(--font-outfit);
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tg-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-stat-capsule {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 99px;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tg-stat-capsule:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(212, 175, 55, 0.25);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.tg-stat-number {
	font-family: var(--font-outfit);
	font-size: 38px;
	font-weight: 800;
	background: var(--tg-gold-grad);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	line-height: 1;
}

.tg-stat-info {
	display: flex;
	flex-direction: column;
}

.tg-stat-label {
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.tg-stat-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}

/* Section 4: Dynamic Luxury Product Gallery */
.tg-premium-products {
	background: var(--tg-premium-bg-light);
	font-family: var(--font-outfit);
}

.tg-products-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-product-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 480px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.06);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tg-product-card.col-3 {
	grid-column: span 3;
}

.tg-product-card.col-2 {
	grid-column: span 2;
}

.tg-product-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tg-product-card:hover .tg-product-img {
	transform: scale(1.08);
}

.tg-product-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 11, 18, 0.9) 0%, rgba(7, 11, 18, 0.3) 60%, transparent 100%);
	z-index: 2;
	transition: opacity 0.4s ease;
}

.tg-product-reflection {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 3;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.tg-product-card:hover .tg-product-reflection {
	opacity: 1;
}

.tg-product-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	z-index: 4;
}

.tg-product-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	color: #d4af37;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 12px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.25);
	padding: 4px 12px;
	border-radius: 99px;
}

.tg-product-content h3 {
	font-family: var(--font-playfair);
	font-size: 26px;
	color: #ffffff;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.tg-product-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 20px 0;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tg-product-card:hover .tg-product-content p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}

.tg-product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: gap 0.3s ease;
}

.tg-product-link svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	transition: transform 0.3s ease;
}

.tg-product-card:hover .tg-product-link {
	color: #d4af37;
	gap: 12px;
}

.tg-product-card:hover .tg-product-link svg {
	transform: translateX(4px);
}

/* Section 5: Matrix of Supply Excellence (Why Choose Us) */
.tg-premium-choose {
	background: #070a10;
	font-family: var(--font-outfit);
}

.tg-choose-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-choose-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.tg-choose-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--tg-crimson);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tg-choose-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tg-choose-card:hover::before {
	opacity: 1;
}

.tg-choose-icon-frame {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.4s ease;
}

.tg-choose-card:hover .tg-choose-icon-frame {
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.3);
}

.tg-choose-icon-frame svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #d4af37;
	stroke-width: 1.8;
}

.tg-choose-card h3 {
	font-family: var(--font-playfair);
	font-size: 19px;
	color: #ffffff;
	margin: 0 0 12px 0;
	font-weight: 600;
}

.tg-choose-card p {
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/* Section 6: Brand Bulletin & Updates (Luxury News) */
.tg-premium-news {
	background: var(--tg-premium-bg-light);
	font-family: var(--font-outfit);
}

.tg-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-news-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border: var(--tg-border-dark);
	transition: all 0.4s ease;
}

.tg-news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	border-color: rgba(235, 48, 56, 0.15);
}

.tg-news-media {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.tg-news-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 5s ease;
}

.tg-news-card:hover .tg-news-img {
	transform: scale(1.06);
}

.tg-news-date-bar {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: #070b12;
	color: #ffffff;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0.15);
}

.tg-news-content {
	padding: 30px;
}

.tg-news-cat {
	font-size: 11px;
	font-weight: 800;
	color: var(--tg-crimson);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 12px;
	display: block;
}

.tg-news-content h3 {
	font-family: var(--font-playfair);
	font-size: 20px;
	color: #070b12;
	margin: 0 0 12px 0;
	line-height: 1.4;
	font-weight: 600;
}

.tg-news-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 20px 0;
}

.tg-news-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: #070b12;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tg-news-more svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	transition: transform 0.3s ease;
}

.tg-news-card:hover .tg-news-more {
	color: var(--tg-crimson);
}

.tg-news-card:hover .tg-news-more svg {
	transform: translateX(3px);
}

/* Section 7: National Logistics Network (PAN India Map) */
.tg-premium-pan-india {
	background: #080d16;
	font-family: var(--font-outfit);
	position: relative;
}

.tg-pan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-pan-content {
	color: #ffffff;
}

.tg-pan-content h2 {
	font-family: var(--font-playfair);
	font-size: 38px;
	color: #ffffff;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.tg-pan-content p {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 35px;
}

.tg-pan-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tg-pan-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.tg-pan-feature-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.tg-pan-feature-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #d4af37;
	stroke-width: 2.5;
}

.tg-pan-feature-text h4 {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 4px 0;
}

.tg-pan-feature-text p {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
	line-height: 1.5;
}

.tg-pan-media {
	position: relative;
	display: flex;
	justify-content: center;
}

.tg-pan-map-wrapper {
	width: 100%;
	max-width: 480px;
	position: relative;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 24px;
	padding: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tg-pan-map-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	filter: brightness(0.95) contrast(1.15) drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.tg-pan-floating-stat {
	position: absolute;
	top: -20px;
	right: -20px;
	background: var(--tg-gold-grad);
	padding: 18px 24px;
	border-radius: 20px;
	color: #070b12;
	box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
	text-align: center;
	font-weight: 800;
	animation: float-badge 7s ease-in-out infinite alternate-reverse;
}

.tg-pan-floating-stat h3 {
	font-size: 28px;
	margin: 0;
	line-height: 1;
	font-weight: 800;
}

.tg-pan-floating-stat p {
	font-size: 11px;
	margin: 4px 0 0 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
}

/* Section 8: Testimonials Slider (Frosted Boardroom) */
.tg-premium-testimonials {
	background: var(--tg-premium-bg-light);
	font-family: var(--font-outfit);
}

.tg-testimonial-slider-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.tg-testimonial-viewport {
	overflow: hidden;
}

.tg-testimonial-track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	width: 100%;
}

.tg-testimonial-slide {
	flex: 0 0 100%;
	width: 100%;
	box-sizing: border-box;
}

.tg-testimonial-card {
	background: #ffffff;
	border: var(--tg-border-dark);
	border-radius: 24px;
	padding: 50px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
	position: relative;
}

.tg-testimonial-quote-mark {
	font-family: var(--font-playfair);
	font-size: 110px;
	line-height: 1;
	background: var(--tg-gold-grad);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	height: 40px;
	display: block;
	margin-bottom: 20px;
	opacity: 0.25;
}

.tg-testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 24px;
}

.tg-testimonial-stars svg {
	width: 18px;
	height: 18px;
	fill: #d4af37;
}

.tg-testimonial-text {
	font-size: 18px;
	line-height: 1.8;
	color: #333333;
	margin-bottom: 30px;
	font-weight: 400;
	font-family: var(--font-outfit);
}

.tg-testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tg-testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ffffff;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	margin-bottom: 12px;
}

.tg-testimonial-name {
	font-family: var(--font-playfair);
	font-size: 18px;
	font-weight: 700;
	color: #070b12;
	margin: 0;
}

.tg-testimonial-desig {
	font-size: 12px;
	color: #777777;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	margin-top: 4px;
}

/* Testimonial Controls */
.tg-testimonial-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 35px;
}

.tg-testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cccccc;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.tg-testimonial-dot.active {
	background: var(--tg-crimson);
	transform: scale(1.2);
}

/* Section 9: Premium Glass Accordions (FAQs) */
.tg-premium-faq {
	background: #070b12;
	font-family: var(--font-outfit);
}

.tg-faq-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.tg-faq-item {
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tg-faq-item:hover {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.025);
}

.tg-faq-item.active {
	border-color: rgba(212, 175, 55, 0.3);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tg-faq-header {
	width: 100%;
	padding: 24px 30px;
	background: transparent;
	border: none;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	color: #ffffff;
}

.tg-faq-header h3 {
	font-size: 16.5px;
	font-weight: 600;
	margin: 0;
	font-family: var(--font-outfit);
	transition: color 0.3s ease;
}

.tg-faq-item:hover .tg-faq-header h3 {
	color: #d4af37;
}

.tg-faq-icon-box {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	color: rgba(255, 255, 255, 0.6);
}

.tg-faq-icon-box svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tg-faq-item.active .tg-faq-icon-box {
	border-color: #d4af37;
	color: #d4af37;
	background: rgba(212, 175, 55, 0.1);
}

.tg-faq-item.active .tg-faq-icon-box svg {
	transform: rotate(180deg);
}

.tg-faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tg-faq-content {
	padding: 0 30px 24px 30px;
	font-size: 14.5px;
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
	.tg-about-grid,
	.tg-executive-grid,
	.tg-pan-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tg-about-content,
	.tg-executive-content,
	.tg-pan-content {
		padding-right: 0;
	}

	.tg-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.tg-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tg-product-card.col-3,
	.tg-product-card.col-2 {
		grid-column: span 1;
	}

	.tg-choose-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.tg-choose-card.span-last {
		grid-column: span 2;
	}

	.tg-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.tg-section-padding {
		padding: 70px 0;
	}

	.tg-luxury-heading .tg-main-title {
		font-size: 32px;
	}

	.tg-about-img-wrapper {
		width: 100%;
	}

	.tg-about-badge-card {
		bottom: -20px;
		left: 15px;
		padding: 16px 20px;
		max-width: 220px;
	}

	.tg-about-badge-card h4 {
		font-size: 18px;
	}

	.tg-about-chips {
		grid-template-columns: 1fr;
	}

	.tg-executive-quote-icon {
		font-size: 70px;
	}

	.tg-executive-content h2 {
		font-size: 28px;
	}

	.tg-executive-text {
		font-size: 15px;
	}

	.tg-stats-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tg-stat-capsule {
		border-radius: 20px;
		padding: 20px;
	}

	.tg-products-grid {
		grid-template-columns: 1fr;
	}

	.tg-product-card {
		height: 380px;
	}

	.tg-choose-grid {
		grid-template-columns: 1fr;
	}

	.tg-choose-card.span-last {
		grid-column: span 1;
	}

	.tg-news-grid {
		grid-template-columns: 1fr;
	}

	.tg-testimonial-card {
		padding: 30px 20px;
	}

	.tg-testimonial-quote-mark {
		font-size: 80px;
	}

	.tg-testimonial-text {
		font-size: 15px;
	}

	.tg-pan-map-wrapper {
		max-width: 100%;
	}

	.tg-pan-floating-stat {
		top: -15px;
		right: 15px;
		padding: 12px 18px;
	}

	.tg-pan-floating-stat h3 {
		font-size: 22px;
	}
}

/* ==========================================================================
   Responsive Header Fix
   ========================================================================== */
.elementor-element-c50a72b {
	width: 100% !important;
	max-width: 100% !important;
	padding-left: clamp(10px, 2vw, 28px) !important;
	padding-right: clamp(10px, 2vw, 28px) !important;
}

.elementor-element-c50a72b > .e-con-inner {
	width: min(100%, 1200px) !important;
	max-width: 1200px !important;
	min-height: 82px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-wrap: nowrap !important;
	gap: clamp(12px, 1.8vw, 24px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.elementor-element-d08d92b {
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: none !important;
}

.elementor-element-d08d92b img,
.elementor-element-ccfde75 img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-height: clamp(52px, 6vw, 72px) !important;
}

.elementor-element-662d673 {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 1 1 auto !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	gap: clamp(18px, 2.4vw, 34px) !important;
	margin-left: auto !important;
}

.elementor-element-15f2609 {
	flex: 0 1 auto !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
}

.elementor-element-15f2609 .elementor-nav-menu--main .elementor-nav-menu {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: nowrap !important;
	gap: 2px !important;
}

.elementor-element-15f2609 .elementor-nav-menu--main .menu-link {
	white-space: nowrap !important;
	padding-left: clamp(7px, 0.72vw, 13px) !important;
	padding-right: clamp(7px, 0.72vw, 13px) !important;
	font-size: clamp(12px, 1.05vw, 15px) !important;
	line-height: 1 !important;
}

.elementor-element-afea302,
.tg-navbar-cta {
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: none !important;
	margin-left: auto !important;
}

.elementor-element-afea302 .elementor-button,
.tg-navbar-cta .elementor-button {
	white-space: nowrap !important;
	padding: 13px 22px !important;
	font-size: 14px !important;
	line-height: 1.05 !important;
}

@media (max-width: 1120px) and (min-width: 1025px) {
	.elementor-element-c50a72b > .e-con-inner {
		gap: 10px !important;
	}

	.elementor-element-15f2609 .elementor-nav-menu--main .elementor-nav-menu {
		gap: 1px !important;
	}

	.elementor-element-15f2609 .elementor-nav-menu--main .menu-link {
		padding-left: 7px !important;
		padding-right: 7px !important;
		font-size: 12px !important;
	}

	.elementor-element-afea302 .elementor-button,
	.tg-navbar-cta .elementor-button {
		padding: 12px 16px !important;
		font-size: 12px !important;
	}
}

@media (max-width: 1024px) {
	.elementor-element-c50a72b > .e-con-inner {
		min-height: 74px !important;
		flex-wrap: nowrap !important;
	}

	.elementor-element-662d673,
	.elementor-element-15f2609 {
		flex: 0 0 auto !important;
	}

	.elementor-element-15f2609 .elementor-nav-menu--main {
		display: none !important;
	}

	.elementor-element-15f2609 .elementor-menu-toggle {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 44px !important;
		height: 44px !important;
		margin: 0 !important;
	}

	.elementor-element-15f2609 .elementor-nav-menu--dropdown {
		left: auto !important;
		right: 0 !important;
		width: min(88vw, 360px) !important;
		max-height: calc(100vh - 96px) !important;
		overflow-y: auto !important;
	}
}

@media (max-width: 767px) {
	.elementor-element-c50a72b {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.elementor-element-c50a72b > .e-con-inner {
		min-height: 66px !important;
		gap: 10px !important;
	}

	.elementor-element-d08d92b img,
	.elementor-element-ccfde75 img {
		max-height: 52px !important;
	}
}
