        :root {
            --primary: #d4af37;
            --primary-dark: #b59530;
            --secondary: #c0c0c0;
            --secondary-dark: #a0a0a0;
            --dark: #121212;
            --darker: #0a0a0a;
            --light: #f8f8f8;
            --lighter: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -2;
            background-color: var(--darker);
        }

        /* Gold Shimmer Overlay */
        .gold-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
            animation: shimmer 15s infinite alternate;
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* Trading Chart Background Animation */
        .trading-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.08;
            overflow: hidden;
        }
        
        .trading-line {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: moveLine 80s linear infinite;
        }
        
        .trading-line:nth-child(1) { top: 15%; animation-delay: 0s; }
        .trading-line:nth-child(2) { top: 35%; animation-delay: -15s; }
        .trading-line:nth-child(3) { top: 55%; animation-delay: -30s; }
        .trading-line:nth-child(4) { top: 75%; animation-delay: -45s; }
        
        .trading-candle {
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
            animation: moveCandle 120s linear infinite;
            opacity: 0.6;
            border-radius: 3px;
        }
        
        .trading-candle::before {
            content: '';
            position: absolute;
            width: 1px;
            height: 20px;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
        
        @keyframes moveLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        @keyframes moveCandle {
            0% { transform: translateX(-100px) rotateY(0deg); }
            50% { transform: translateX(50vw) rotateY(180deg); }
            100% { transform: translateX(calc(100vw + 100px)) rotateY(0deg); }
        }

        /* Main Container */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Centered Content */
        .centered-content {
            text-align: center;
            margin: 0 auto;
            max-width: 900px;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        header.scrolled {
            background-color: rgba(10, 10, 10, 0.98);
            padding: 0.5rem 2rem;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            letter-spacing: 1px;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease;
            padding: 0 20px;
            margin-top: 100px;
        }
        /* Add top margin on mobile devices */
        @media (max-width: 768px) {
            .hero-content {
                margin-top: 500px;
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            background: var(--lighter);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--dark);
        }

        .market-status {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .market-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border-left: 3px solid var(--primary);
            text-align: left;
            min-width: 200px;
            backdrop-filter: blur(5px);
        }

        .market-item h3 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .market-item p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--lighter);
        }

        .market-item .change {
            font-size: 0.9rem;
            font-weight: normal;
        }

        .market-item .change.up {
            color: #4CAF50;
        }

        .market-item .change.down {
            color: #F44336;
        }
        
        /* Section Styling */
        .section {
            padding: 8rem 2rem;
            position: relative;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(18, 18, 18, 0.7) 50%, transparent 100%);
            z-index: -1;
            opacity: 0.5;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .about-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            max-width: 350px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--lighter);
        }

        .about-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(18, 18, 18, 0.9));
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--lighter);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        /* Market Data Section */
        .market-data {
            background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.9));
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .data-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.05);
            transition: all 0.3s ease;
        }

        .data-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .data-card h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .data-card .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--lighter);
            margin-bottom: 0.5rem;
        }

        .data-card .change {
            font-size: 1rem;
            font-weight: 500;
        }

        .data-card .change.up {
            color: #4CAF50;
        }

        .data-card .change.down {
            color: #F44336;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(18, 18, 18, 0.9));
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.1);
            margin: 0 1rem;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .testimonial i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        .testimonial p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial .client {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial .client img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid var(--primary);
        }

        .testimonial .client-info h4 {
            color: var(--lighter);
            margin-bottom: 0.2rem;
        }

        .testimonial .client-info p {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 0;
            font-style: normal;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .testimonial-nav button {
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .testimonial-nav button:hover {
            color: var(--primary);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 10, 10, 0.9));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.95));
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
            width: 100%;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            min-width: 250px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--lighter);
        }

        .contact-card p {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2.5rem;
            width: 100%;
           
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--lighter);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--lighter);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            color: var(--primary);
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: var(--light);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 6rem 1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .market-status {
                flex-direction: column;
                gap: 1rem;
            }

            .market-item {
                width: 100%;
            }

            .contact-card {
                width: 100%;
            }
        }
    