/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #333;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
nav ul li a:hover, .active {
    color: #f5a623;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(135deg, #222, #333);
}
.hero h1 {
    font-size: 2.5rem;
}
.hero h1 span {
    color: #f5a623;
}
.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f5a623;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}
.btn:hover {
    background: #e69500;
}

/* Projects */
.projects, .about, .contact {
    text-align: center;
    padding: 60px 10%;
}
.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.project-card {
    width: 300px;
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}
.project-card:hover {
    transform: scale(1.05);
}
.project-card h3 {
    color: #f5a623;
}
.project-card a {
    display: block;
    margin-top: 10px;
    color: white;
    text-decoration: none;
}

