body {
    font-family: 'Fira Code', monospace;
    scroll-behavior: smooth;
    background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
    color: white;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: url('https://source.unsplash.com/1600x900/?technology,dark') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 30px;
}

.project-card {
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

footer {
    padding: 20px;
    background-color: #111;
    text-align: center;
}