
        /* CSS Variables for Theme */
        :root {
            --primary-black: #0a0a0a;
            --secondary-black: #1a1a1a;
            --dark-gray: #2a2a2a;
            --gold: #d4af37;
            --light-gold: #f4e4a6;
            --white: #ffffff;
            --light-gray: #e0e0e0;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --gold-glow: 0 0 15px rgba(212, 175, 55, 0.5);
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-black);
            color: var(--light-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 15px;
            color: var(--light-gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--light-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Button Styles */
        .cta-button {
            display: inline-block;
            background: transparent;
            color: var(--gold);
            padding: 15px 35px;
            border: 2px solid var(--gold);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: var(--transition);
            z-index: -1;
        }

        .cta-button:hover {
            color: var(--primary-black);
            transform: translateY(-5px);
            box-shadow: var(--gold-glow);
        }

        .cta-button:hover:before {
            left: 0;
        }

        /* Header Styles */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background-color: transparent;
            
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        #header.scrolled {
            padding: 15px 0;
            background-color: rgba(10, 10, 10, 0.98);
        }

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

        /* Logo Styles */
        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo-img {
            height: 60px;
            width: auto;
            margin-bottom: 5px;
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.7));
        }

        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .logo-sub {
            font-size: 0.8rem;
            color: var(--light-gold);
            letter-spacing: 2px;
            margin-top: 2px;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--gold);
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding-top: 80px;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 15px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease-out;
        }

        .hero-tagline {
            font-size: 1.8rem;
            color: var(--light-gold);
            margin-bottom: 30px;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero .cta-button {
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
            z-index: 1;
        }

        .floating-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation: float 20s infinite linear;
        }

        .floating-2 {
            width: 200px;
            height: 200px;
            bottom: 15%;
            right: 10%;
            animation: float 15s infinite linear reverse;
        }

        .floating-3 {
            width: 150px;
            height: 150px;
            top: 40%;
            right: 20%;
            animation: float 25s infinite linear;
        }

        /* About Section */
        .about {
            background-color: var(--secondary-black);
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--gold-glow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

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

        /* Vision & Mission */
        .vision-mission {
            background-color: var(--primary-black);
            position: relative;
        }

        .vm-container {
            display: flex;
            gap: 40px;
        }

        .vm-box {
            flex: 1;
            padding: 40px;
            background-color: var(--secondary-black);
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .vm-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: var(--transition);
        }

        .vm-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow), var(--gold-glow);
        }

        .vm-box:hover:before {
            left: 100%;
        }

        .vm-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        /* Products Section */
        .products {
            background-color: var(--secondary-black);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--dark-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow), var(--gold-glow);
            border-color: var(--gold);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .product-info {
            padding: 25px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .product-info h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }

        /* Contact Section */
        .contact-section {
            background-color: var(--primary-black);
        }

        .contact-content {
            display: flex;
            gap: 60px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-right: 20px;
            min-width: 40px;
            text-align: center;
        }

        .contact-text h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

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

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: var(--secondary-black);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 5px;
            color: var(--light-gray);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

        .submit-btn {
            background-color: var(--gold);
            color: var(--primary-black);
            border: none;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .submit-btn:hover {
            background-color: var(--light-gold);
            transform: translateY(-3px);
            box-shadow: var(--gold-glow);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-black);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo, .footer-links {
            flex: 1;
            min-width: 250px;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }

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

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

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .vm-container,
            .contact-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background-color: var(--primary-black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-tagline {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-tagline {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .vm-box, .product-card {
                padding: 25px;
            }
            
            section {
                padding: 70px 0;
            }
        }
   