/* ZebasoTech Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --zebaso-navy: #020412;
    --zebaso-navy-light: #0d1126;
    --zebaso-blue: #0052FF;
    --zebaso-blue-dim: rgba(0, 82, 255, 0.1);
    --zebaso-orange: #FF5500;
    --zebaso-white: #ffffff;
    --zebaso-gray: #8888aa;

    /* Gradients */
    --zebaso-gradient-main: linear-gradient(135deg, var(--zebaso-navy) 0%, #050a1f 100%);
    --zebaso-gradient-blue: linear-gradient(90deg, #0052FF 0%, #00C6FF 100%);
    --zebaso-gradient-dark: linear-gradient(180deg, rgba(2, 4, 18, 0) 0%, var(--zebaso-navy) 100%);

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--zebaso-navy);
    color: var(--zebaso-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utilities */
.container-zebaso {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--zebaso-gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--zebaso-blue);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--zebaso-blue);
    color: white;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #0040cc;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.4);
}

/* Hero Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--zebaso-blue) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--zebaso-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--zebaso-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {

    color: white;
}

/* Modern Card Styles */
.card-modern {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.card-modern:hover::before {
    opacity: 1;
}

.card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card-modern:hover .icon-box {
    background: rgba(0, 82, 255, 0.1);
    border-color: rgba(0, 82, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.tech-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--zebaso-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.card-modern:hover .tech-badge {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.section-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}