:root {
    --primary-blue: #00A3FF;
    --dark-blue: #020B2D;
    --glow-color: rgba(0, 163, 255, 0.5);
}

body {
    background: var(--dark-blue);
    color: white;
    background-image: radial-gradient(circle at 50% 50%, rgba(3,11,41,1) 0%, rgba(2,7,29,1) 100%);
    cursor: none;
    padding-top: 76px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
}

.hero-section {
    min-height: 80vh;
}

.label-tag {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.8rem 2rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px var(--glow-color);
}

.service-icon {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
}

.read-more:hover {
    color: white;
}

#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#mouseTrailCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.navbar {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.navbar.scrolled {
    background-color: rgba(2, 11, 45, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-blue);
}

.footer .social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.footer h3 {
    color: white;
}
