/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0a0a12;
    --bg-darker: #050508;
    --primary-color: #6c5ce7;
    --primary-glow: rgba(108, 92, 231, 0.4);
    --secondary-color: #a29bfe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b2b2b2;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-light {
    color: var(--text-muted) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    transition: 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    font-weight: 500;
}

.btn-gradient {
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border: none;
    transition: transform 0.2s;
}

.btn-gradient:hover {
    transform: scale(1.05);
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 8, 0.5), rgba(5, 5, 8, 0.9));
    z-index: -1;
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
    transition: 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.5);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(162, 155, 254, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

/* Spacing and Sections */
.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.section-dark {
    background-color: var(--bg-darker);
}

/* Features */
.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.doc-card {
    width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark-gradient {
    background: linear-gradient(145deg, #10101a, #0a0a10);
}

.chat-bubble {
    font-size: 1.1rem;
    position: relative;
    color: var(--text-main);
}

/* Animations */
.ai-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
}

/* Scroll Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .display-2 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.2rem;
    }
}