:root {
    --primary-color: #0066CC;
    --secondary-color: #0099FF;
    --text-color: #1A1F36;
    --bg-color: #FFFFFF;
    --accent-color: #00BFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.95),
        rgba(0, 153, 255, 0.85),
        rgba(0, 191, 255, 0.8)
    );
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/circuit-pattern.svg") center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 2rem;
}

.hero-content h1 {
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.02em;
    font-size: 4rem;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-content p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
}

.hero-bunny {
    max-height: 400px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
#about {
    padding: 6rem 0;
    background: var(--bg-color);
}

.office-image {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
#services {
    padding: 6rem 0;
    background: #F7FAFC;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Team Section */
#team {
    padding: 6rem 0;
    background: var(--bg-color);
}

.team-mascot {
    width: 300px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-mascot:hover {
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background: #F7FAFC;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}
