/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #05010a; /* deep premium dark */
    color: #f5e6c8; /* soft gold white */
}

/* ================= NAVBAR ================= */
.premium-navbar {
    background: rgba(10, 3, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.brand-text {
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FFD700, #ffb347, #fff5cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: #e6d3a3 !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #FFD700 !important;
}

.btn-login {
    border: 1px solid #FFD700;
    color: #FFD700;
}

.btn-register {
    background: linear-gradient(90deg,#FFD700,#ffb347);
    color: #000;
    font-weight: 600;
}

/* Force white hamburger icon */
.navbar-dark .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Fix horizontal scroll issue */
html, body {
    overflow-x: hidden;
}

/* Ensure navbar full width */
.premium-navbar {
    width: 100%;
}

/* Mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10,3,20,0.98);
        padding: 20px;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        border: 1px solid rgba(255,215,0,0.2);
    }
}


/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-bg.gif') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* GOLD OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
    rgba(255, 215, 0, 0.15),
    rgba(5, 1, 10, 0.95));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(90deg,#FFD700,#ffb347,#fff5cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: #e6d3a3;
    max-width: 600px;
}

.btn-premium {
    background: linear-gradient(90deg,#FFD700,#ffb347);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-img {
    max-width: 420px;
    filter: drop-shadow(0 0 40px rgba(255,215,0,0.5));
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: linear-gradient(180deg,#05010a,#05010a,#12061f);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg,#FFD700,#ffb347,#fff5cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #e6d3a3;
    font-size: 17px;
    line-height: 1.7;
}

.about-img {
    filter: drop-shadow(0 0 40px rgba(255,215,0,0.35));
    border-radius: 20px;
}


/* ================= MVV GLASS CARDS ================= */
.mvv-section {
    background: radial-gradient(circle at center,#12061f,#05010a);
}

.glass-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255,215,0,0.25);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 40px rgba(255,215,0,0.35);
}

.icon-box {
    font-size: 32px;
    color: #FFD700;
}

.section-subtitle {
    color: #e6d3a3;
    max-width: 700px;
    margin: auto;
}

/* ================= PROJECTS ================= */
.projects-section {
    background: linear-gradient(180deg,#05010a,#12061f);
}

.project-card {
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(12px);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 0 40px rgba(255,215,0,0.35);
}

.project-icon {
    font-size: 35px;
    margin-bottom: 15px;
    color: #FFD700;
}


/* ================= MARKET ================= */
.market-section {
    background: radial-gradient(circle at center,#12061f,#05010a);
}

.market-card {
    background: linear-gradient(145deg,#12061f,#05010a);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(255,215,0,0.15);
}

.market-price {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: #FFD700;
}

.market-up { color: #00ff9c; font-weight: 600; }
.market-down { color: #ff4d6d; font-weight: 600; }


/* ================= STATS ================= */
.stats-section {
    background: linear-gradient(180deg,#05010a,#000000);
}

.stat-box {
    padding: 30px;
}

.counter {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg,#FFD700,#ffb347,#fff5cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= TESTIMONIALS ================= */
.testimonial-section {
    background: radial-gradient(circle at center,#12061f,#05010a);
}

.testimonial-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(255,215,0,0.2);
}

.testimonial-card p {
    font-size: 18px;
    color: #e6d3a3;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    margin-bottom: 5px;
    color: #FFD700;
}

.testimonial-card span {
    color: #cbbd8a;
}


/* ================= CONTACT ================= */
.contact-section {
    background: linear-gradient(180deg,#05010a,#12061f);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #e6d3a3;
}

.contact-img {
    filter: drop-shadow(0 0 40px rgba(255,215,0,0.35));
    border-radius: 20px;
}


/* ================= FOOTER ================= */
.premium-footer {
    background: #000000;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.footer-logo {
    font-weight: 800;
    background: linear-gradient(90deg,#FFD700,#ffb347,#fff5cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbbd8a;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-line {
    border-color: rgba(255,215,0,0.15);
    margin: 40px 0;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {

    .hero-section {
        text-align: center;
        padding: 120px 0 80px;
        background-position: center;
        background-size: cover;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
        color: #fff5cc;
    }

    .hero-desc {
        font-size: 15px;
        margin: auto;
        color: #e6d3a3;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        max-width: 280px;
        margin-top: 40px;
        filter: drop-shadow(0 0 25px rgba(255,215,0,0.4));
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 26px;
        color: #fff5cc;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
        color: #e6d3a3;
    }

    .btn-premium {
        padding: 10px 22px;
        font-size: 14px;
        background: linear-gradient(90deg,#FFD700,#ffb347);
        color: #000;
    }
}

/* Mobile ke liye bg same but overlay GOLD feel */
@media (max-width: 768px) {
    .hero-section {
        background: url('../images/hero-bg.gif') center center no-repeat;
        background-size: cover;
    }
}