 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
            color: #fff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #8B1A1A, #c9a961);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #c9a961;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 20px 60px;
            background: #0a0a0a;
            overflow: hidden;
        }

        .grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #8B1A1A, #c9a961);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-content .subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .hero-content .subtitle-hindi {
            font-size: 1.2rem;
            color: rgba(201, 169, 97, 0.8);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #8B1A1A, #b82a2a);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(201, 169, 97, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(139, 26, 26, 0.4);
            border-color: #c9a961;
        }

        /* Section Styles */
        section {
            padding: 100px 20px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            font-size: 1.2rem;
            color: #c9a961;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .section-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gallery Section */
        .gallery {
            background: #0f0f0f;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            height: 320px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            background: #1a1a1a;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 169, 97, 0.5);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 40px 25px 25px;
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #fff;
        }

        .gallery-overlay p {
            color: #c9a961;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Services Section */
        .services {
            background: #0a0a0a;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: #141414;
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #8B1A1A, #c9a961);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            background: #1a1a1a;
            border-color: rgba(201, 169, 97, 0.3);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            filter: grayscale(0.3);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .service-card .hindi-text {
            font-size: 1.2rem;
            color: #c9a961;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.3;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact {
            background: #0f0f0f;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-card {
            background: #141414;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: rgba(201, 169, 97, 0.3);
            background: #1a1a1a;
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #c9a961;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card p {
                      
            font-size: 1.15rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.7);
        }

        .phone-number {
            display: block;
            font-size: 1.3rem;
            color: #fff;
        }

        .contact-card strong {
            color: #c3b48f;
            font-size: 1.3rem;
        }

        .qr-code-container {
            text-align: center;
            padding: 20px;
        }

        .qr-code-container img {
            width: 200px;
            height: 200px;
            background: white;
            padding: 15px;
            border-radius: 12px;
            margin: 0 auto 20px;
        }

        .qr-code-container p {
            font-size: 1.15rem;
            line-height: 1.1;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: #0a0a0a;
        }

        footer p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 20px;
            }

            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .gallery-item {
                height: 300px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }