/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #020617;
    color: #fff;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #050510;
    overflow-x: hidden;
}

/* Particle Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Website Content */
.website-content {
    position: relative;
    z-index: 1;
}

/* ================= 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('https://i.pinimg.com/originals/13/95/56/1395563572369c74405eec53885e95e2.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, 0, 0, 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: 800px;
    filter: drop-shadow(0 0 40px rgba(0,229,255,0.4));
}

/* ================= ABOUT SECTION ================= */
.about-section {
     background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.7),
        rgba(2, 6, 23, 0.7),
        rgba(3, 11, 31, 0.7)
    );
}

.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 {
    width: 400px;
    filter: drop-shadow(0 0 40px rgba(0,229,255,0.25));
    border-radius: 20px;
}


/* ================= MVV GLASS CARDS ================= */
.mvv-section {
    background: linear-gradient( 180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
}

.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,
        rgba(2, 6, 23, 0.7),
        rgba(2, 6, 23, 0.7),
        rgba(3, 11, 31, 0.7)
    );
}

.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: linear-gradient( 180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
}

.market-card {
    background: linear-gradient( 180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
    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, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
}

.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: linear-gradient( 180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
}

.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,
        rgba(2, 6, 23, 0.7),
        rgba(2, 6, 23, 0.7),
        rgba(3, 11, 31, 0.7)
    );
}

.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: linear-gradient( 180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.7), rgba(3, 11, 31, 0.7));
    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: 70px 0 0px;
        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: 409px;
        margin-top: -98px;
    }
}

@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('https://i.pinimg.com/originals/13/95/56/1395563572369c74405eec53885e95e2.gif') center center no-repeat;
        background-size: cover;
    }
}

/* ==================================================
   WATCH & DISCOVER VIDEO SECTION
================================================== */

.video-section {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.7),
        rgba(2, 6, 23, 0.7),
        rgba(3, 11, 31, 0.7)
    );
    overflow: hidden;
}


/* Small Heading */
.video-small-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #00e5ff;
    margin-bottom: 8px;
}


/* ================= VIDEO CARD ================= */

.video-card {
    height: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,229,255,0.18);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* Card Hover */
.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,229,255,0.6);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 35px rgba(0,229,255,0.15);
}


/* ================= THUMBNAIL ================= */

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020617;
}


/* Thumbnail Image */
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* Image Zoom */
.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}


/* Dark Overlay */
.video-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(2,6,23,0.05),
        rgba(2,6,23,0.6)
    );

    transition: 0.4s;
}


.video-card:hover .video-overlay {
    background: rgba(2,6,23,0.25);
}


/* ================= PLAY BUTTON ================= */

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 70px;
    height: 70px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #00e5ff,
        #4facfe
    );

    box-shadow:
        0 0 0 10px rgba(0,229,255,0.1),
        0 0 35px rgba(0,229,255,0.6);

    transition: 0.4s;
}


/* Play Button Hover */
.video-card:hover .play-button {
    transform:
        translate(-50%, -50%)
        scale(1.12);

    box-shadow:
        0 0 0 15px rgba(0,229,255,0.08),
        0 0 50px rgba(0,229,255,0.8);
}


/* CSS Play Triangle */
.play-icon {
    width: 0;
    height: 0;

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #020617;

    margin-left: 5px;
}


/* ================= VIDEO DURATION ================= */

.video-duration {
    position: absolute;
    right: 12px;
    bottom: 12px;

    padding: 5px 10px;

    background: rgba(2,6,23,0.85);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;

    color: #fff;

    font-size: 11px;
    font-weight: 600;

    backdrop-filter: blur(5px);
}


/* ================= VIDEO CONTENT ================= */

.video-content {
    padding: 25px;
}


.video-category {
    display: block;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #00e5ff;

    margin-bottom: 10px;
}


.video-content h4 {
    color: #fff;

    font-size: 20px;
    font-weight: 600;

    margin-bottom: 10px;

    transition: 0.3s;
}


.video-card:hover .video-content h4 {
    color: #00e5ff;
}


.video-content p {
    color: #94a3b8;

    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* ==================================================
   VIDEO POPUP
================================================== */

.video-popup {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* Active Popup */
.video-popup.active {
    visibility: visible;
    opacity: 1;
}


/* Dark Backdrop */
.video-popup-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.88);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Video Container */
.video-popup-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1000px;

    background: #020617;

    border: 1px solid rgba(0,229,255,0.4);

    border-radius: 18px;

    padding: 8px;

    box-shadow:
        0 0 80px rgba(0,229,255,0.2);

    transform: scale(0.9);

    transition: transform 0.35s ease;
}


.video-popup.active .video-popup-container {
    transform: scale(1);
}


/* Video */
.video-popup video {
    display: block;

    width: 100%;

    max-height: 80vh;

    border-radius: 12px;

    background: #000;
}


/* ================= CLOSE BUTTON ================= */

.video-close {
    position: absolute;

    top: -18px;
    right: -18px;

    z-index: 5;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #00e5ff,
        #4facfe
    );

    border: none;
    border-radius: 50%;

    color: #020617;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 0 25px rgba(0,229,255,0.5);

    transition: 0.3s;
}


.video-close:hover {
    transform: rotate(90deg) scale(1.1);
}


/* Prevent Body Scroll */
body.video-open {
    overflow: hidden;
}


/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media (max-width: 768px) {

    .video-content {
        padding: 20px;
    }

    .video-content h4 {
        font-size: 18px;
    }

    .play-button {
        width: 58px;
        height: 58px;
    }

    .play-icon {
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 13px;
    }

    .video-popup {
        padding: 15px;
    }

    .video-popup-container {
        padding: 5px;
        border-radius: 12px;
    }

    .video-close {
        top: -15px;
        right: -8px;

        width: 38px;
        height: 38px;

        font-size: 25px;
    }

}