body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a192f;
    color: white;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 90vh;
}

.hero span {
    color: #00bfff;
}

.tagline {
    margin: 10px 0;
    opacity: 0.7;
}

/* BUTTONS */
.btn {
    background: #00bfff;
    padding: 10px 20px;
    border-radius: 5px;
    color: black;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #00bfff;
    padding: 10px 20px;
    color: #00bfff;
    text-decoration: none;
}

.buttons a {
    margin: 5px;
}

/* IMAGE */
.hero-img img {
    width: 220px;
    border-radius: 50%;
    border: 3px solid #00bfff;
}

/* SECTION */
.section {
    padding: 80px;
    text-align: center;
}

/* SKILLS */
.skills span {
    border: 1px solid #00bfff;
    padding: 10px;
    margin: 5px;
    display: inline-block;
}

/* PROJECT */
.project-card {
    background: #112240;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: auto;
}

.project-card ul {
    text-align: left;
}

/* HOVER */
.btn:hover {
    background: #009acd;
}

.btn-outline:hover {
    background: #00bfff;
    color: black;
}

/* 🔥 Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* 🔥 Fade In Animation */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

/* 🔥 Button Glow */
.btn, .btn-outline {
    transition: all 0.3s ease;
}

.btn:hover {
    box-shadow: 0 0 15px #00bfff;
}

.btn-outline:hover {
    box-shadow: 0 0 10px #00bfff;
}

/* 🔥 Image Animation */
.hero-img img {
    animation: float 3s ease-in-out infinite;
}

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