body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    text-align: center;
}
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #1e293b, #0f172a);
    color: #e2e8f0;
    text-align: center;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: #1e293b;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
nav a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

section {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    margin-bottom: 10px;
    border-left: 4px solid #38bdf8;
    padding-left: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    margin-top: 20px;
}
.project-card {
    background: #1e293b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    background: #334155;
}
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #1e293b, #020617);
}

.hero h1 {
    font-size: 3rem;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #38bdf8;
    color: black;
    cursor: pointer;
    border-radius: 5px;
}
.skills-container {
    margin-top: 20px;
}

.skills-container span {
    display: inline-block;
    background: #38bdf8;
    color: black;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
}
#projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    width: 280px;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}
h2 {
    margin-bottom: 20px;
    font-size: 28px;
}
.hero h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}
#contact a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}
#contact {
    color: #e2e8f0;
    padding-bottom: 80px;
}
section {
    position: relative;
    z-index: 1;
}
#contact {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}