/* ===== CSS RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a1628;
            --primary-light: #1a2d4a;
            --accent: #c8a45e;
            --accent-light: #e8c96e;
            --accent-dark: #a8843e;
            --gold-gradient: linear-gradient(135deg, #c8a45e, #e8c96e, #c8a45e);
            --blue-accent: #2a6fc8;
            --blue-light: #4a9fe8;
            --text-primary: #ffffff;
            --text-secondary: rgba(255,255,255,0.7);
            --text-dark: #1a1a2e;
            --glass-bg: rgba(255,255,255,0.05);
            --glass-border: rgba(255,255,255,0.1);
            --glass-bg-light: rgba(255,255,255,0.85);
            --section-dark: #0a1628;
            --section-darker: #060f1d;
            --section-navy: #0d1f3c;
            --green-accent: #2ecc71;
            --green-dark: #1a8a4a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-lg: 0 25px 50px rgba(0,0,0,0.3);
            --shadow-glow: 0 0 40px rgba(200,164,94,0.15);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
        }

        /* ===== CURSOR GLOW EFFECT ===== */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200,164,94,0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        /* ===== SCROLL PROGRESS BAR ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--blue-accent));
            z-index: 10005; /* above navbar */
            box-shadow: 0 0 10px rgba(200,164,94,0.5);
            transition: width 0.1s ease-out;
        }

        /* ===== LOADING SCREEN ===== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 100000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(200,164,94,0.2);
            border-top: 3px solid var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-text {
            margin-top: 20px;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--accent);
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10000;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 60px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 45px;
            height: 45px;
            background: #ffffff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 3px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-logo:hover .nav-logo-icon {
            transform: scale(1.08);
            box-shadow: 0 6px 20px rgba(200, 164, 94, 0.3);
        }

        .nav-logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        .nav-logo-text span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gold-gradient) !important;
            color: var(--primary) !important;
            padding: 10px 24px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--text-primary);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(20px);
            z-index: 10000;
            transition: right 0.4s ease;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            perspective: 1000px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 30%, #0d1f3c 60%, #0a1628 100%);
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
            pointer-events: none;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 8s infinite;
        }

        @keyframes floatParticle {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            20% { opacity: 0.6; }
            80% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-100px) scale(1); }
        }

        .hero-3d-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            perspective: 1200px;
        }

        .floating-shape {
            position: absolute;
            border: 1px solid rgba(200,164,94,0.15);
            border-radius: 20px;
            animation: float3D 15s infinite ease-in-out;
            backdrop-filter: blur(2px);
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            background: rgba(200,164,94,0.03);
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: -3s;
            background: rgba(42,111,200,0.03);
            border-color: rgba(42,111,200,0.15);
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 15%;
            animation-delay: -6s;
            background: rgba(200,164,94,0.05);
        }

        .shape-4 {
            width: 250px;
            height: 250px;
            top: 5%;
            right: 20%;
            animation-delay: -9s;
            background: rgba(200,164,94,0.02);
            border-radius: 50%;
        }

        @keyframes float3D {
            0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
            25% { transform: translateY(-30px) rotateX(5deg) rotateY(10deg); }
            50% { transform: translateY(-15px) rotateX(-3deg) rotateY(-5deg); }
            75% { transform: translateY(-25px) rotateX(8deg) rotateY(-8deg); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(200,164,94,0.1);
            border: 1px solid rgba(200,164,94,0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero-logo-container {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-logo-img {
            max-width: 150px;
            height: auto;
            border-radius: 16px;
            background: #ffffff;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--shadow-glow);
            transition: var(--transition);
        }

        .hero-logo-img:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 40px rgba(200, 164, 94, 0.4);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero h1 .highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle-main {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1.25rem);
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease 0.6s both;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 1s both;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--gold-gradient);
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 20px rgba(200,164,94,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(200,164,94,0.4);
        }

        .btn-secondary {
            padding: 16px 36px;
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--glass-border);
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            animation: fadeInUp 1s ease 1.2s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .hero-scroll-mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(200,164,94,0.4);
            border-radius: 13px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .hero-scroll-dot {
            width: 4px;
            height: 8px;
            background: var(--accent);
            border-radius: 2px;
            animation: scrollDot 2s infinite;
        }

        @keyframes scrollDot {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(12px); opacity: 0; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 120px 60px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(200,164,94,0.1);
            border: 1px solid rgba(200,164,94,0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title .highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--section-darker);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            perspective: 800px;
        }

        .about-image {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform 0.6s ease;
            transform: rotateY(-5deg);
        }

        .about-image-wrapper:hover .about-image {
            transform: rotateY(0deg);
        }

        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .about-image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
            z-index: 2;
        }

        .about-image-badge .years {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }

        .about-image-badge .years-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 20px;
            font-size: 1.02rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            transition: var(--transition);
        }

        .about-feature:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .about-feature-icon {
            width: 36px;
            height: 36px;
            background: rgba(200,164,94,0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ===== PROCESS SECTION ===== */
        .process {
            background: var(--section-dark);
        }

        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), var(--blue-accent), var(--accent));
            border-radius: 2px;
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-step-content {
            width: 45%;
            padding: 30px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .process-step:hover .process-step-content {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
        }

        .process-step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
            z-index: 2;
            box-shadow: 0 0 20px rgba(200,164,94,0.3);
        }

        .process-step-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .process-step-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .process-step-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== PRODUCTS SECTION ===== */
        .products {
            background: var(--section-navy);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .product-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            transition: var(--transition);
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3), var(--shadow-glow);
        }

        .product-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08) translateZ(10px);
        }

        .product-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.9) 100%);
            transform: translateZ(5px);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 14px;
            background: rgba(200,164,94,0.9);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateZ(35px);
            transition: transform 0.4s ease;
        }

        .product-info {
            padding: 30px;
            transform-style: preserve-3d;
        }

        .product-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            transform: translateZ(30px);
            transition: transform 0.4s ease;
        }

        .product-info p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
            transform: translateZ(15px);
            transition: transform 0.4s ease;
        }

        .product-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            transform: translateZ(20px);
            transition: transform 0.4s ease;
        }

        .product-spec {
            padding: 6px 14px;
            background: rgba(200,164,94,0.08);
            border: 1px solid rgba(200,164,94,0.15);
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 500;
        }

        /* Fabric Enquiry Call-to-Action */
        .product-enquiry-cta {
            margin-top: 50px;
            padding: 40px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .product-enquiry-cta h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .product-enquiry-cta p {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
            line-height: 1.6;
        }

        .enquiry-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 10px;
        }

        .enquiry-buttons a {
            text-decoration: none;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .enquiry-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }
            .enquiry-buttons a {
                width: 100%;
            }
            .product-enquiry-cta {
                padding: 30px 20px;
            }
        }

        /* Fabric Swatch Showcase */
        .swatch-showcase {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 60px;
            padding: 50px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .swatch-header-block {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 20px auto;
        }

        .swatch-header-block h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .swatch-header-block p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .swatch-library-container {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }

        /* Large Preview Card */
        .swatch-preview-card {
            flex: 1;
            background: rgba(10, 22, 40, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
        }

        .swatch-preview-img-container {
            width: 100%;
            height: 250px;
            overflow: hidden;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #121212;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .swatch-preview-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .swatch-preview-card:hover .swatch-preview-img-container img {
            transform: scale(1.04);
        }

        .swatch-preview-details {
            text-align: left;
        }

        .swatch-preview-details h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .swatch-preview-details p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            min-height: 80px;
        }

        /* Thumbnails Grid */
        .swatch-thumbnails-grid {
            flex: 1.3;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }

        .swatch-thumb {
            position: relative;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4 / 3;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: #121212;
        }

        .swatch-thumb img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .swatch-thumb span {
            position: relative;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
            color: var(--text-primary);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 12px 8px 8px 8px;
            text-align: center;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
        }

        /* Swatch states */
        .swatch-thumb:hover {
            border-color: rgba(200, 164, 94, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .swatch-thumb:hover img {
            opacity: 0.95;
            transform: scale(1.05);
        }

        .swatch-thumb.active {
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(200, 164, 94, 0.25);
        }

        .swatch-thumb.active img {
            opacity: 1;
            transform: scale(1.02);
        }

        .swatch-thumb.active span {
            color: var(--accent);
            font-weight: 700;
        }

        @media (max-width: 992px) {
            .swatch-showcase {
                padding: 30px 20px;
            }
            .swatch-library-container {
                flex-direction: column;
                gap: 30px;
            }
            .swatch-preview-card {
                width: 100%;
            }
            .swatch-thumbnails-grid {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .swatch-thumbnails-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .swatch-header-block h3 {
                font-size: 1.7rem;
            }
        }

        /* ===== INFRASTRUCTURE SECTION ===== */
        .infrastructure {
            background: var(--section-darker);
        }

        .infra-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .infra-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
            transition: var(--transition);
        }

        .infra-card:hover {
            transform: scale(1.03);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }

        .infra-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .infra-card:hover img {
            transform: scale(1.1);
        }

        .infra-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 30px 30px;
            background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
        }

        .infra-overlay h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .infra-overlay p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== QUALITY CONTROL SECTION ===== */
        .quality {
            background: var(--section-dark);
        }

        .quality-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .quality-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .quality-content p {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .quality-checks {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .quality-check {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            transition: var(--transition);
        }

        .quality-check:hover {
            border-color: var(--accent);
            transform: translateX(8px);
        }

        .quality-check-icon {
            width: 44px;
            height: 44px;
            background: rgba(46,204,113,0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .quality-check-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .quality-check-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        .quality-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .quality-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        /* ===== CERTIFICATIONS SECTION ===== */
        .certifications {
            background: var(--section-navy);
        }

        .cert-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            /* Fade edges for premium look */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .cert-slider-track {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: certMarqueeLeft 18s linear infinite;
        }

        /* Pause marquee on hover */
        .cert-slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes certMarqueeLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .cert-card {
            width: 255px;
            flex-shrink: 0;
            text-align: center;
            padding: 25px 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .cert-card:hover::before {
            transform: scaleX(1);
        }

        .cert-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: var(--shadow-glow);
        }

        .cert-icon {
            width: 70px;
            height: 70px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            border: 2px solid rgba(200,164,94,0.2);
            overflow: hidden;
            padding: 6px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .cert-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .cert-card:hover .cert-icon {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(200, 164, 94, 0.25);
        }

        .cert-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent);
            position: relative;
            display: inline-block;
            padding-bottom: 4px;
        }

        .cert-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 30px;
            height: 1.5px;
            background: var(--gold-gradient);
            transition: transform 0.4s ease;
            transform-origin: center;
        }

        .cert-card:hover h3::after {
            transform: translateX(-50%) scaleX(1);
        }

        .cert-card p {
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.5;
            margin: 0;
        }

        /* ===== SUSTAINABILITY / SOLAR SECTION ===== */
        .sustainability {
            background: var(--section-darker);
            position: relative;
            overflow: hidden;
        }

        .sustainability::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 50%, rgba(46,204,113,0.05) 0%, transparent 60%);
        }

        .solar-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .solar-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .solar-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .solar-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .solar-content p {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .solar-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .solar-stat {
            padding: 24px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
        }

        .solar-stat:hover {
            border-color: var(--green-accent);
            transform: translateY(-5px);
        }

        .solar-stat-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .solar-stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--green-accent);
        }

        .solar-stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* ===== LEADERSHIP SECTION ===== */
        .leadership {
            background: var(--section-dark);
        }

        .leader-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            max-width: 900px;
            margin: 0 auto;
        }

        .leader-card {
            text-align: center;
            padding: 50px 40px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .leader-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(200,164,94,0.05) 0%, transparent 70%);
        }

        .leader-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: var(--shadow-glow);
        }

        .leader-avatar {
            width: 140px;
            height: 180px;
            border-radius: 8px;
            margin: 0 auto 24px;
            border: 3px solid var(--accent);
            overflow: hidden;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .leader-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leader-avatar-placeholder {
            width: 100%;
            height: 100%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
        }

        .leader-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .leader-card .leader-role {
            color: var(--accent);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .leader-card p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background: var(--section-navy);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            transition: var(--transition);
        }

        .contact-item:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .contact-item-icon {
            width: 52px;
            height: 52px;
            background: rgba(200,164,94,0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .contact-item-text p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .contact-map {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--glass-border);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 420px;
            border: none;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--section-darker);
            padding: 60px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-left p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-right {
            display: flex;
            gap: 20px;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--accent);
        }

        /* ===== SCROLL ANIMATIONS (PeachWeb 3D Style) ===== */
        .reveal {
            opacity: 0;
            transform: translateY(60px) perspective(1000px) rotateX(15deg) scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            transform-origin: center top;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0) perspective(1000px) rotateX(0deg) scale(1);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-80px) perspective(1000px) rotateY(-15deg) scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            transform-origin: left center;
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0) perspective(1000px) rotateY(0deg) scale(1);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(80px) perspective(1000px) rotateY(15deg) scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            transform-origin: right center;
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0) perspective(1000px) rotateY(0deg) scale(1);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(200,164,94,0.3);
            border: none;
            font-size: 1.2rem;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .section {
                padding: 80px 30px;
            }

            .navbar {
                padding: 16px 30px;
            }

            .navbar.scrolled {
                padding: 12px 30px;
            }

            .about-grid,
            .quality-grid,
            .solar-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .products-grid,
            .infra-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: row;
                padding-left: 80px;
            }

            .process-step-content {
                width: 100%;
            }

            .process-step-number {
                left: 30px;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-stats {
                gap: 30px;
                flex-wrap: wrap;
            }

            .hero-stat-number {
                font-size: 2rem;
            }

            .products-grid,
            .infra-grid {
                grid-template-columns: 1fr;
            }

            .leader-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .solar-stats {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 60px 20px;
            }

            .footer {
                padding: 40px 20px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ===== 3D TILT EFFECT ===== */
        .tilt-card {
            transform-style: preserve-3d;
        }

        /* ===== MARQUEE ANIMATION ===== */
        .marquee-section {
            padding: 20px 0;
            overflow: hidden;
            background: rgba(200,164,94,0.05);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .marquee-track {
            display: flex;
            gap: 60px;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .marquee-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ===== COUNTER ANIMATION ===== */
        .count-up {
            display: inline-block;
        }

        /* ===== ADVANCED ATMOSPHERE & MOTION EFFECTS ===== */
        
        /* Grid Overlay Background */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 50px 50px;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            pointer-events: none;
            z-index: 0;
            mix-blend-mode: overlay;
        }

        /* Film Grain Noise Overlay */
        .noise-overlay {
            position: fixed;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            width: 200%;
            height: 200%;
            background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/svg%3E') repeat;
            opacity: 0.035;
            pointer-events: none;
            z-index: 100005; /* Always on top */
            animation: noise-shift 0.15s infinite steps(4);
        }

        @keyframes noise-shift {
            0% { transform: translate(0, 0); }
            10% { transform: translate(-1%, -1%); }
            20% { transform: translate(-2%, 1%); }
            30% { transform: translate(1%, -2%); }
            40% { transform: translate(-1%, 3%); }
            50% { transform: translate(-2%, 1%); }
            60% { transform: translate(3%, -1%); }
            70% { transform: translate(2%, 1%); }
            80% { transform: translate(1%, -2%); }
            90% { transform: translate(-1%, 3%); }
            100% { transform: translate(0, 0); }
        }

        /* Sound Control Floating Button */
        .sound-toggle {
            position: fixed;
            bottom: 30px;
            right: 100px; /* offset next to back-to-top */
            background: rgba(10, 22, 40, 0.6);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--text-primary);
            padding: 10px 18px;
            border-radius: 30px;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            box-shadow: var(--shadow-glow);
            transition: var(--transition);
            will-change: transform, background;
        }

        .sound-toggle:hover {
            background: rgba(200, 164, 94, 0.15);
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .sound-toggle-label {
            transition: var(--transition);
        }

        /* Split-Text Letter Wave Animations */
        .split-text {
            display: inline-block;
        }

        .char-span {
            display: inline-block;
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        /* Interactive Hover Transitions for text */
        .magnetic:hover .char-span {
            animation: char-wave 0.5s ease-out;
            animation-delay: var(--delay);
        }

        @keyframes char-wave {
            0% { transform: translateY(0); }
            30% { transform: translateY(-5px); }
            70% { transform: translateY(2px); }
            100% { transform: translateY(0); }
        }

        /* Magnetic button physics integration */
        .magnetic {
            display: inline-block;
            transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        /* 3D Tilt Shine Effect */
        .shine-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            border-radius: inherit;
            mix-blend-mode: overlay;
            transition: background 0.15s ease;
        }

        /* Floating Image Hover Preview Tooltip */
        .floating-preview {
            position: fixed;
            width: 250px;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 1px solid var(--accent);
            pointer-events: none;
            z-index: 10000;
            opacity: 0;
            transform: scale(0.8) translate(-50%, -50%);
            transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--section-darker);
            will-change: transform, opacity;
        }

        .floating-preview.visible {
            opacity: 1;
            transform: scale(1) translate(-50%, -110%);
        }

        .floating-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dynamic Star spinner next to Logo */
        .nav-logo {
            position: relative;
        }

        .logo-star {
            width: 18px;
            height: 18px;
            color: var(--accent);
            position: absolute;
            top: -2px;
            right: -22px;
            transform-origin: center;
            animation: infinite-rotate 12s linear infinite;
            pointer-events: none;
        }

        @keyframes infinite-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .contact-item-text p a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item-text p a:hover {
            color: var(--accent);
        }

        .logo-green {
            color: #4ebb37 !important; /* Brand green optimized for dark themes */
        }

        .logo-blue {
            color: #3a9ffd !important; /* Brand blue/cyan optimized for dark themes */
        }

        /* Adjusted layout to accommodate the Sound Toggle on mobile */
        @media (max-width: 768px) {
            .sound-toggle {
                bottom: 20px;
                right: 80px;
                padding: 8px 12px;
            }
            .sound-toggle-label {
                display: none; /* Icon only on mobile */
            }
        }