:root {
    --primary-color: #4279c7;
    --secondary-color: #4279c7;
    --dark-bg: #0e0e12;
    --darker-bg: #070707;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background-color: rgba(14, 14, 14, 0.405);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    height: 100vh;
    background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;  
    z-index: 1;
}

.hero {
    height: 100vh;
    background: rgb(0, 0, 255);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.hero .container h1,
.hero .container p,
.hero .container .btn,
.hero-buttons {
    pointer-events: auto;
}
.hero {
    height: 100vh;
    background: linear-gradient(45deg, #13132b, #050708); 
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(63, 94, 251, 0.02), rgba(0, 0, 0, 0));
    pointer-events: none;
}
.hero-content {
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(3px);  
    -webkit-backdrop-filter: blur(3px);  
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 109, 201, 0.3);
}
