/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem 3rem;
    z-index: 1000;
}

nav .logo {
    font-weight: bold;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00f0ff;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #00f0ff, #0066ff);
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #ffdd00;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.7rem 2rem;
    background: #ffdd00;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    color: #111;
}

/* Sections */
section {
    padding: 5rem 10%;
    min-height: 100vh;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* About */
.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-container img {
    width: 300px;
    border-radius: 20px;
    transition: transform 0.5s;
}

.about-container img:hover {
    transform: scale(1.05);
}

/* Skills */
.skills-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.skill {
    background: #00f0ff;
    color: #111;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.skill:hover {
    transform: scale(1.1);
}

/* Projects */
.projects-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Contact */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
}

form input, form textarea {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #ccc;
}

form button {
    padding: 0.8rem;
    background: #00f0ff;
    color: #111;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #0066ff;
    color: #fff;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}