/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #020617;
    color: #fff;
}

/* ================= NAVBAR ================= */
.premium-navbar {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-text {
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #00e5ff, #4facfe, #cfd9df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: #cbd5e1 !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #00e5ff !important;
}

.btn-login {
    border: 1px solid #00e5ff;
    color: #00e5ff;
}

.btn-register {
    background: linear-gradient(90deg,#00e5ff,#4facfe);
    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 background luxury */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(2,6,23,0.98);
        padding: 20px;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        border: 1px solid rgba(0,229,255,0.15);
    }
}


/* ================= HERO SECTION ================= */
/* ================= HERO SECTION FIXED ================= */
.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;
}

/* Overlay luxury gradient */
 .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
    rgba(0, 229, 255, 0.15),
    rgba(2, 6, 23, 0.92));
    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,#00e5ff,#4facfe,#cfd9df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
}

.btn-premium {
    background: linear-gradient(90deg,#00e5ff,#4facfe);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-img {
    max-width: 420px;
    filter: drop-shadow(0 0 40px rgba(0,229,255,0.4));
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: linear-gradient(180deg,#020617,#020617,#030b1f);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg,#00e5ff,#4facfe,#cfd9df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
}

.about-img {
    filter: drop-shadow(0 0 40px rgba(0,229,255,0.25));
    border-radius: 20px;
}


/* ================= MVV GLASS CARDS ================= */
.mvv-section {
    background: radial-gradient(circle at center,#03122e,#020617);
}

.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,229,255,0.2);
    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(0,229,255,0.25);
}

.icon-box {
    font-size: 32px;
}

.section-subtitle {
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
}

/* ================= PROJECTS ================= */
.projects-section {
    background: linear-gradient(180deg,#020617,#03122e);
}

.project-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,229,255,0.2);
    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(0,229,255,0.25);
}

.project-icon {
    font-size: 35px;
    margin-bottom: 15px;
}


/* ================= MARKET ================= */
.market-section {
    background: radial-gradient(circle at center,#03122e,#020617);
}

.market-card {
    background: linear-gradient(145deg,#03122e,#020617);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0,229,255,0.1);
}

.market-price {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
}

.market-up { color: #00ff9c; font-weight: 600; }
.market-down { color: #ff4d6d; font-weight: 600; }


/* ================= STATS ================= */
.stats-section {
    background: linear-gradient(180deg,#020617,#01040f);
}

.stat-box {
    padding: 30px;
}

.counter {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg,#00e5ff,#4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= TESTIMONIALS ================= */
.testimonial-section {
    background: radial-gradient(circle at center,#03122e,#020617);
}

.testimonial-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,229,255,0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0,229,255,0.15);
}

.testimonial-card p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #94a3b8;
}


/* ================= CONTACT ================= */
.contact-section {
    background: linear-gradient(180deg,#020617,#03122e);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #cbd5e1;
}

.contact-img {
    filter: drop-shadow(0 0 40px rgba(0,229,255,0.25));
    border-radius: 20px;
}


/* ================= FOOTER ================= */
.premium-footer {
    background: #01040f;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(0,229,255,0.15);
}

.footer-logo {
    font-weight: 800;
    background: linear-gradient(90deg,#00e5ff,#4facfe,#cfd9df);
    -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: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-line {
    border-color: rgba(255,255,255,0.05);
    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;
    }

    .hero-desc {
        font-size: 15px;
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        max-width: 280px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .btn-premium {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Mobile ke liye lighter bg */
@media (max-width: 768px) {
    .hero-section {
        background: url('../images/hero-bg.gif') center center no-repeat;
        background-size: cover;
    }
}