:root {
    --primary: #7c3aed;
    --secondary: #06b6d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
}

body {
    background: #0b0f19;
    color: #fff;
    overflow-x: hidden;
}

/* ================= GLASS NAVBAR ================= */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(10,15,25,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

    nav ul li a {
        text-decoration: none;
        color: #d1d5db;
        font-weight: 500;
        transition: 0.3s;
    }

        nav ul li a:hover {
            color: #fff;
        }

.nav-btn {
    padding: 10px 22px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

/* ================= HERO ================= */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

    /* Cinematic Video */
    .hero video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -3;
    }

    /* Animated Gradient Overlay */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg,#7c3aed,#06b6d4,#9333ea);
        background-size: 600% 600%;
        animation: gradientMove 14s ease infinite;
        opacity: 0.6;
        z-index: -2;
    }

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Content */
.hero-content {
    max-width: 620px;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #e5e7eb;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: white;
    color: black;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline {
    padding: 14px 32px;
    border: 1px solid white;
    border-radius: 40px;
    text-decoration: none;
    color: white;
}

/* ================= FLOATING MOCKUPS ================= */

.mockups {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mockup-card {
    width: 400px;
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

    .mockup-card img {
        width: 100%;
        display: block;
    }

    .mockup-card:nth-child(2) {
        animation-delay: 2s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* ================= RESPONSIVE ================= */

@media(max - width:1100px) {
    .mockups {
        display: none;
    }
}

@media(max - width:768px) {

    nav ul {
        display: none;
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 80px;
    }

        .hero h1 {
            font-size: 36px;
        }

    .hero-buttons {
        justify-content: center;
    }
}

/* PRODUCTS SECTION */
.products {
    padding: 80px 8%;
    background: #0b0f1a;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* SLIDER */
.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

    .product-slider::-webkit-scrollbar {
        height: 6px;
    }

    .product-slider::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 10px;
    }

/* CARD */
.product-card {
    min-width: 300px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
}

    /* IMAGE */
    .product-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    /* TEXT */
    .product-card h3 {
        font-size: 20px;
        padding: 15px 20px 5px;
    }

    .product-card p {
        font-size: 14px;
        color: #bbb;
        padding: 0 20px 20px;
    }

    /* HOVER EFFECT */
    .product-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        border-color: rgba(0, 150, 255, 0.5);
    }

/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

/* MODAL CONTENT */
.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

    .modal-content iframe {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
}

.product-slider {
    scroll-snap-type: x mandatory;
}

.product-card {
    scroll-snap-align: start;
}

.clients {
    padding: 60px 8%;
    text-align: center;
    background: #0f172a;
    color: #fff;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    opacity: 0.7;
}

    .client-logos img {
        transition: 0.3s;
    }

        .client-logos img:hover {
            opacity: 1;
            transform: scale(1.1);
        }

.features {
    padding: 80px 8%;
    background: #0b0f1a;
    color: #fff;
}

.feature-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

    .feature-card:hover {
        transform: translateY(-8px);
        background: rgba(0,150,255,0.1);
    }


.blogs {
    padding: 80px 8%;
    background: #0f172a;
    color: #fff;
}

.blog-grid {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-card {
    flex: 1;
    min-width: 280px;
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

    .blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .blog-card h3 {
        padding: 15px;
    }

    .blog-card p {
        padding: 0 15px 20px;
        color: #bbb;
    }

    .blog-card:hover {
        transform: translateY(-8px);
    }

.cta {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
}

    .cta h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .login-link:hover {
        color: #fff;
    }

.auth-left {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* VIDEO */
.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.auth-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

/* CONTENT */
.overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 30px;
}

/* BRAND */
.brand {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    -webkit-background-clip: text;
    color: transparent;
}

/* TAGLINE */
.overlay h2 {
    margin-top: 10px;
    font-size: 26px;
}

.overlay p {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

