html {
    scroll-behavior: smooth;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.service-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.team-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.result-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: scale(1.02);
}

.client-logo {
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

input, textarea {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(30, 30, 30, 0.7);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    transform: translateY(30px);
}

.slide-up.visible {
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-30px);
}

.slide-left.visible {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(30px);
}

.slide-right.visible {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 1.5rem;
    }
    
    .hero-content {
        margin-top: 2rem;
    }
}

.glow-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-box {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}