/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #1e1e1e;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    float: left;
    font-size: 24px;
    font-weight: 700;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

header::after {
    content: "";
    display: table;
    clear: both;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.home {
    background: #f4f4f4;
}

.about {
    background: #e8e8e8;
}

.projects {
    background: #f4f4f4;
}

.contact {
    background: #e8e8e8;
}

/* Project Grid */
.project-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #1e1e1e;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

form button:hover {
    background: #333;
}

/* Footer */
footer {
    background: #1e1e1e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.img{
    padding: 20px 0;
    height: 200px;
    width: 300;
    border-radius: 7px;

}