/* ===== Basic Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* ===== Navbar ===== */
header {
    background: #222;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    font-size: 22px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    color: #00adb5;
}

/* ===== Sections ===== */
.section {
    padding: 100px 40px;
    min-height: 100vh;
}

.light {
    background-color: white;
}

/* ===== Home Section ===== */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #00adb5, #393e46);
    color: white;
    text-align: center;
}

.home-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.home-content p {
    max-width: 600px;
    margin: auto;
}

.home-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
}

.home-content button:hover {
    transform: scale(1.05);
}

/* ===== Skills ===== */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.skill {
    background: #00adb5;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
}

/* ===== Projects ===== */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    color: #00adb5;
    text-decoration: none;
    font-weight: bold;
}

.project-link:hover {
    text-decoration: underline;
}

/* ===== Contact ===== */
.contact-details {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-form {
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
}

.contact-form button {
    padding: 10px;
    background: #00adb5;
    color: white;
    border: none;
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 10px;
    }
}
@media (max-width: 500px) {
    .home-content h2 {
        font-size: 28px;
    }
}