* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #010101;
    color: #f0f3fa;
    overflow-x: hidden;
}

input,
select {
    color: #fff !important;
}

input::placeholder {
    color: #797979 !important;
}

.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, #0a0f2a, #010101 90%);
    z-index: -2;
}

.global-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" d="M10 10 L90 10 M10 20 L90 20 M10 30 L90 30" stroke="white"/><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.gradient-text {
    background: linear-gradient(135deg, #B388FF, #64FFDA, #448AFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accent {
    color: #64FFDA;
}

.accent-text {
    color: #64FFDA;
}

.glass-nav {
    background: rgba(5, 10, 25, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: white;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 240, 0.85);
    transition: 0.2s;
}

.nav-link:hover {
    color: #64FFDA;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(95deg, #448AFF, #B388FF);
    border: none;
    box-shadow: 0 4px 14px rgba(68, 138, 255, 0.3);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.4);
    background: linear-gradient(95deg, #5c9eff, #c9a3ff);
}

.btn-glow {
    background: linear-gradient(95deg, #64FFDA, #448AFF);
    border: none;
    color: #000;
    font-weight: 600;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.badge-chip {
    background: rgba(100, 255, 218, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #64FFDA;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    display: flex;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.section-padding {
    padding: 100px 0;
}

.bg-dark-gradient {
    background: radial-gradient(circle at 10% 20%, #0A1120, #010101);
}

.service-card,
.team-card,
.contact-form-glass {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #64FFDA;
    box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.5);
}

.icon-circle {
    background: linear-gradient(145deg, #1e2a4a, #0b1120);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    color: #64FFDA;
    border: 1px solid #64FFDA50;
}

.link-arrow {
    color: #64FFDA;
    text-decoration: none;
    font-weight: 500;
}

.team-card img {
    border: 3px solid #64FFDA;
    padding: 4px;
}

.contact-form-glass {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.fade-up,
.fade-left,
.fade-right,
.fade-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

.fade-card {
    transition-delay: 0.05s;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}