:root {
            --primary: #d4af37;
            --primary-dark: #b8941f;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #f8f9fa;
            --gray: #1a1a1a;
            --gray-light: #2a2a2a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .gold-text {
            color: var(--primary);
        }
        
        /* Modern Navbar */
        .navbar {
            background-color: transparent;
            padding: 0.5rem 0;
            transition: var(--transition);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 9999999999;
        }
        
        .navbar.scrolled {
            padding: 0.8rem 0;
            background-color: transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary) !important;
            letter-spacing: 1px;
        }
        
        .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            margin: 0 0.8rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Modern Hero Section */
        .hero {
            background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('https://images.unsplash.com/photo-1618220179428-22790b461013?ixlib=rb-4.0.3&auto=format&fit=crop&w=1927&q=80');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(5, 5, 5, 0) 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 5rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            font-weight: 300;
        }
        
        .btn-primary-custom {
            background-color: var(--primary);
            border: none;
            color: var(--darker);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 1px;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 0;
            transition: var(--transition);
            letter-spacing: 1px;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary);
            color: var(--darker);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        /* Section Styling */
        section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 1rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            display: none !important;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #aaa;
            max-width: 600px;
            margin-top: 1rem;
        }
        
        /* About Section */
        .about {
            background-color: var(--darker);
        }
        
        .about-img {
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .about-img img {
            width: 100%;
            transition: var(--transition);
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
            z-index: 1;
        }
        
        .about-content h3 {
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: #ccc;
        }
        
        .stats {
            display: flex;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .stat-item {
            flex: 0 0 50%;
            margin-bottom: 2rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--darker);
        }
        
        .service-card {
            background-color: var(--gray);
            padding: 2.5rem 2rem;
            height: 100%;
            transition: var(--transition);
            border-bottom: 4px solid transparent;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            opacity: 0.1;
            transition: var(--transition);
            z-index: 0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-bottom: 4px solid var(--primary);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .service-card h4 {
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .service-card p {
            position: relative;
            z-index: 1;
        }
        
        /* Portfolio Section */
        .portfolio-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .portfolio-tab {
            background: transparent;
            border: 2px solid var(--gray-light);
            color: var(--light);
            padding: 0.8rem 1.8rem;
            font-weight: 600;
            border-radius: 0;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .portfolio-tab.active, .portfolio-tab:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--darker);
        }
        
        .portfolio-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            height: 300px;
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
            padding: 2rem;
            text-align: center;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h4 {
            color: var(--darker);
            margin-bottom: 1rem;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
        }
        
        .portfolio-overlay p {
            color: var(--darker);
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.2s;
        }
        
        .portfolio-item:hover .portfolio-overlay h4,
        .portfolio-item:hover .portfolio-overlay p {
            transform: translateY(0);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1758&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(5, 5, 5, 0) 50%);
        }
        
        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* Form Styling */
        .form-container {
            background-color: var(--gray);
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-top: 4px solid var(--primary);
        }
        
        .form-control {
            background-color: var(--darker);
            border: 1px solid var(--gray-light);
            color: var(--light);
            padding: 0.8rem 1rem;
            border-radius: 0;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            background-color: var(--darker);
            border-color: var(--primary);
            color: var(--light);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .form-label {
            color: var(--light);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        
        .footer-links h5 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--gray);
            color: var(--light);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 0.8rem;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            color: var(--darker);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid var(--gray);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #777;
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        /* Modern Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 5rem 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .portfolio-items {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .form-container {
                padding: 2rem;
            }
            
            .portfolio-items {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
        }
        
        .top-index{
            z-index: 9999999;
        }