
:root {
    --bg-main: #0a0c10;
    --bg-dark-pure: #050608;
    --accent: #00ff87;
    --accent-glow: rgba(0, 255, 135, 0.3);
    --primary-gradient: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    --card-glass: rgba(22, 27, 34, 0.4);
    --border-glass: rgba(255, 255, 255, 0.07);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: #e2e8f0;
    overflow-x: hidden;
}

.fw-black { font-weight: 800; }
.text-accent { color: var(--accent); }
.text-muted-custom { color: #8b949e; }

.logo-width{
    width: 7%;
}


/* --- Cyber Glass Navigation --- */
.navbar {
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 0;
}

.brand-glow {
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.nav-link {
    color: #c9d1d9 !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
    text-shadow: 0 0 15px var(--accent-glow);
}

.btn-action {
    background: var(--primary-gradient);
    color: #000 !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* --- Multi-Level Dropdown System --- */
@media(min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        background: rgba(15, 18, 23, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-glass);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    .dropdown-item {
        color: #c9d1d9;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    .dropdown-item:hover {
        background: transparent;
        color: var(--accent);
        padding-left: 1.5rem;
    }
    .dropdown-menu .dropdown-submenu { position: relative; }
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 2px;
    }
}

/* --- Atmospheric Design Orbs --- */
.hero-viewport {
    min-height: 95vh;
    padding-top: 100px;
    background: var(--bg-dark-pure);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    opacity: 0.15;
}
.orb-1 { top: -10%; right: 10%; width: 400px; height: 400px; background: #60efff; }
.orb-2 { bottom: 10%; left: -5%; width: 500px; height: 500px; background: #00ff87; }

.tagline-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-prime {
    background: var(--primary-gradient);
    color: #050608;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-prime:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-outline-custom {
    border: 1px solid var(--border-glass);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,0.08);
    color: var(--accent);
    border-color: var(--accent);
}

/* --- Premium Interactive Card Media --- */
.interactive-hero-card {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.custom-hero-img {
    border-radius: 14px;
    width: 100%;
}

.glass-card {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-window {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.media-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.8;
}

.media-accent-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    box-shadow: 0 0 30px var(--accent-glow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-accent-play i {
    color: #000;
    font-size: 1.1rem;
    margin-left: 3px;
}

.glass-card-body {
    padding: 1.75rem;
}

/* Card Micro-Interactions */
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 135, 0.3);
    box-shadow: 0 20px 45px rgba(0, 255, 135, 0.06);
}

.glass-card:hover .media-window img {
    transform: scale(1.08);
    opacity: 0.5;
}

.glass-card:hover .media-accent-play {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    background: var(--accent);
}
