.hero-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1128 0%, #1a237e 100%);
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%);
    z-index: 1;
}

.wave-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 2;
}

#waveCanvas {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-content h1 span {
    color: #3498db;
    display: inline;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn.primary {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.hero-buttons .btn.primary:hover {
    background: #3498db;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo .new-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    .wave-animation {
        width: 100%;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 767px) {
    .logo .new-logo {
        height: 60px;
    }
} 