
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c1810;
            --secondary-color: #3d2317;
            --accent-color: #d4641a;
            --gold-color: #ffd700;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #495057;
            --text-dark: #212529;
            --border-color: #dee2e6;
            --hover-color: #b8541a;
            --flame-orange: #ff6b35;
            --flame-red: #e63946;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: var(--flame-orange);
            text-shadow: 0 0 10px var(--flame-orange);
            animation: flicker 2s infinite alternate;
        }

        @keyframes flicker {
            0% { text-shadow: 0 0 5px var(--flame-orange); }
            100% { text-shadow: 0 0 15px var(--flame-red), 0 0 20px var(--flame-orange); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 500;
        }

        .nav-links a:hover, .nav-links a.active {
            background: var(--accent-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: var(--accent-color);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 999;
        }

        .mobile-nav.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .mobile-nav ul {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav ul li {
            border-bottom: 1px solid var(--secondary-color);
        }

        .mobile-nav ul li:last-child {
            border-bottom: none;
        }

        .mobile-nav ul li a {
            display: block;
            color: var(--white);
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background: var(--accent-color);
            padding-left: 3rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            color: var(--white);
            padding: 12rem 2rem 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flame" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,15 Q8,10 10,5 Q12,10 10,15" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23flame)"/></svg>') center/cover;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            color: var(--light-gray);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent-color), var(--flame-orange));
            color: var(--white);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, var(--hover-color), var(--flame-red));
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gold-color);
        }

        .btn-secondary:hover {
            background: var(--gold-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats {
            background: var(--white);
            padding: 4rem 2rem;
            text-align: center;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, var(--light-gray), var(--white));
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, var(--accent-color), transparent);
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-item:hover::before {
            opacity: 0.1;
        }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 35px rgba(212, 100, 26, 0.3);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        .stat-item:hover .stat-number {
            color: var(--gold-color);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
            padding: 6rem 2rem;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .about-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .about-image i {
            font-size: 8rem;
            color: var(--gold-color);
            opacity: 0.7;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 10px var(--gold-color); }
            100% { text-shadow: 0 0 20px var(--gold-color), 0 0 30px var(--flame-orange); }
        }

        /* Products Section */
        .products {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(212, 100, 26, 0.3);
            border-color: var(--accent-color);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-content h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-size: 1.3rem;
            min-height: 3rem;
            display: flex;
            align-items: center;
        }

        .product-content p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            flex-grow: 1;
            line-height: 1.6;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .enquiry-btn {
            background: linear-gradient(45deg, var(--accent-color), var(--flame-orange));
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .enquiry-btn:hover {
            background: linear-gradient(45deg, var(--hover-color), var(--flame-red));
            transform: translateY(-2px);
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
            padding: 6rem 2rem;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            border-color: var(--gold-color);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--gold-color);
            text-shadow: 0 0 15px var(--gold-color);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .service-card:hover h3 {
            color: var(--white);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            overflow-y: auto;
        }

        .modal-content {
            background: var(--white);
            margin: 5% auto;
            padding: 3rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
            border: 2px solid var(--accent-color);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .close {
            color: var(--dark-gray);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            transition: color 0.3s ease;
            z-index: 10;
        }

        .close:hover {
            color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .contact-form .form-group label {
            color: var(--white);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            background: var(--white);
            color: var(--text-dark);
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(212, 100, 26, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            border-radius: 10px;
            background: var(--white);
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(212, 100, 26, 0.2);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .contact-form {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 3rem;
            border-radius: 15px;
            color: var(--white);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            color: var(--white);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--gold-color);
        }

        .footer-section p {
            color: var(--light-gray);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--gold-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            width: 45px;
            height: 45px;
            background: var(--accent-color);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--accent-color);
            color: var(--light-gray);
        }

        /* Quick Contact Button */
        .quick-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--accent-color), var(--flame-orange));
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 65px;
            height: 65px;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(212, 100, 26, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .quick-contact:hover {
            background: linear-gradient(45deg, var(--hover-color), var(--flame-red));
            transform: scale(1.2);
            animation: none;
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Additional Professional Elements */
        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--accent-color), var(--flame-orange));
            margin: 2rem auto;
            border-radius: 2px;
        }

        .subtitle {
            text-align: center;
            color: var(--dark-gray);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 992px) {
            nav {
                padding: 0 1rem;
            }

            .hero {
                padding: 10rem 1rem 6rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }

            .stats-container {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero {
                padding: 9rem 1rem 5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .about-content h2,
            .products h2,
            .services h2,
            .contact-info h2 {
                font-size: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .contact-container {
                gap: 2rem;
            }

            .contact-item {
                padding: 1rem;
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .modal-content {
                margin: 10% auto;
                width: 95%;
                padding: 2rem;
                max-height: 85vh;
                overflow-y: auto;
            }

            .quick-contact {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 8rem 0.5rem 4rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .about,
            .products,
            .services,
            .contact {
                padding: 4rem 0.5rem;
            }

            .about-content h2,
            .products h2,
            .services h2,
            .contact-info h2 {
                font-size: 1.8rem;
            }

            .service-card {
                padding: 1.5rem 1rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .product-content {
                padding: 1rem;
            }

            .product-content h3 {
                font-size: 1.1rem;
            }

            .product-content p {
                font-size: 0.9rem;
            }

            .product-price {
                font-size: 1.1rem;
            }

            .enquiry-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .modal-content {
                margin: 10% auto;
                width: 98%;
                padding: 1.5rem;
                max-height: 85vh;
            }

            .modal-icon {
                font-size: 3rem;
            }

            .footer-container {
                padding: 0 0.5rem;
            }

            .quick-contact {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 360px) {
            .logo {
                font-size: 1.3rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .about-content h2,
            .products h2,
            .services h2,
            .contact-info h2 {
                font-size: 1.6rem;
            }

            .subtitle {
                font-size: 1rem;
            }
        }
