
        :root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #141414;
            --accent-gold: #d4af37; /* Extracted from the logo's golden O */
            --accent-gold-hover: #b5952f;
            --text-light: #f5f5f5;
            --text-muted: #a0a0a0;
            --border-color: #2a2a2a;
            --bs-secondary-color: rgb(236 231 214);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .text-gold {
            color: var(--accent-gold) !important;
        }
        
        .bg-gold {
            background-color: var(--accent-gold) !important;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }

        /* Buttons */
        .btn-gold {
            background-color: var(--accent-gold);
            color: var(--primary-bg);
            border: 2px solid var(--accent-gold);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-gold:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }

        .btn-outline-gold {
            background-color: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-outline-gold:hover {
            background-color: var(--accent-gold);
            color: var(--primary-bg);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .top-bar-info i {
            color: var(--accent-gold);
            margin-right: 5px;
        }

        .top-bar-social a {
            color: var(--text-muted);
            margin-left: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .top-bar-social a:hover {
            color: var(--accent-gold);
            transform: translateY(-2px) scale(1.1);
        }

        /* Navigation */
        .navbar {
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            transition: all 0.3s ease;
             /* top: 40px; Offset for top bar */
        }
        
        /* When scrolled, top bar hides and navbar moves to top */
        body.scrolled .top-bar {
            transform: translateY(-100%);
            opacity: 0;
        }
        
        body.scrolled .navbar {
            top: 0;
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .navbar-brand img {
            height: 45px;
            object-fit: contain;
        }

        .nav-link {
            color: var(--text-light) !important;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            padding: 10px 20px !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-gold) !important;
        }

        .navbar-toggler {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Carousel */
        .hero {
           
            min-height: 200px;
            margin-top: 0;
            position: relative;
        }

        .carousel-item {
            height: 100vh;
            min-height: 600px;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.2));
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: #ffffff; /* Changed to white */
        }

        .hero p {
            font-size: 1.2rem;
            color: #ffffff; /* Changed to white */
            margin-bottom: 30px;
            font-weight: 300;
            max-width: 600px;
        }

        /* Sections */
        .section-padding {
            padding: 50px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: var(--accent-gold);
        }

        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }

        /* About Section */
        .about-section {
            background-color: var(--secondary-bg);
        }
        
        .about-image {
            position: relative;
            border: 1px solid var(--border-color);
            padding: 15px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            filter: grayscale(20%);
            transition: filter 0.5s ease;
        }
        
        .about-image:hover img {
            filter: grayscale(0%);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100px;
            height: 100px;
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-gold);
            z-index: 1;
        }

        /* Services Section */
        .service-card {
            background-color: var(--secondary-bg);
            border: 1px solid var(--border-color);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--accent-gold);
            transition: all 0.4s ease;
            z-index: -1;
            opacity: 0.05;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            font-size: 40px;
            color: var(--accent-gold);
            margin-bottom: 20px;
            display: inline-block;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            text-align: left;
        }

        .service-list li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .service-list li i {
            color: var(--accent-gold);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* Why Choose Us */
        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border-radius: 50%;
            margin-right: 20px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        /* Gallery */
        .gallery-section {
            background-color: var(--secondary-bg);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 300px;
            margin-bottom: 24px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--accent-gold);
            font-size: 30px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay i {
            transform: translateY(0);
        }

        /* Testimonials */
        .testimonial-card {
            background-color: var(--secondary-bg);
            border: 1px solid var(--border-color);
            padding: 40px;
            margin: 15px;
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: rgba(212, 175, 55, 0.1);
            line-height: 1;
        }

        .stars {
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact-info-card {
            background-color: var(--secondary-bg);
            padding: 40px;
            border: 1px solid var(--border-color);
            height: 100%;
        }

        .contact-form {
            background-color: var(--secondary-bg);
            padding: 40px;
            border: 1px solid var(--border-color);
        }

        .form-control, .form-select {
            background-color: var(--primary-bg);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            padding: 12px 20px;
            border-radius: 0;
        }

        .form-control:focus, .form-select:focus {
            background-color: var(--primary-bg);
            border-color: var(--accent-gold);
            color: var(--text-light);
            box-shadow: none;
        }
        
        .form-select option {
            background-color: var(--primary-bg);
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background-color: #050505;
            padding: 80px 0 30px;
            border-top: 1px solid var(--border-color);
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--secondary-bg);
            color: var(--text-light);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
                text-decoration: none;
        }

        .social-icons a:hover {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--primary-bg);
        }

        .seo-tags {
            font-size: 0.75rem;
            color: #444;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            line-height: 1.8;
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .section-title { font-size: 2rem; }
            .section-padding { padding: 60px 0; }
        }
#loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#loader.d-none{
    display: none !important;
}