* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
     background-color: rgb(232, 230, 230);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 36px;
}

.hero-text span {
    color: #2563eb;
}

.hero-text p {
    margin: 10px 0 20px;
    color: #555;
}

.btn {
    background: #2563eb;
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero-image img {
    width: 280px;
    border-radius: 50%;
}

/* About */
.about {
    text-align: center;
    padding: 80px 200px;
}

.about h2 {
    margin-bottom: 15px;
}

/* Skills */
.skills {
    text-align: center;
    padding: 60px 0;
}

.skill-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.skill-box span {
    background: #f5f5f5;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Projects */
.projects {
    text-align: center;
    padding: 80px 0;
}

.project-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 10px;
}

/* Contact */
.contact {
    text-align: center;
    padding: 80px 0;
}

.contact-form {
    width: 380px;
    margin: auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin: 12px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #eaeaea;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

