body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f3;
    color: #2e2e2e;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.navbar {
    width: 100%;
    background: #1c1c1e;
    color: #ffffff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: #0a0a0b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    float: left;
    font-size: 1.5em;
    color: #ffffff;
}

.nav-links {
    float: right;
    list-style: none;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.hero {
    height: 100vh;
    background: linear-gradient(rgba(28, 28, 30, 0.8), rgba(28, 28, 30, 0.8)), url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.hero h1 {
    font-size: 3em;
}

.hero .highlight {
    color: #ff7f50;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff;
    margin: 0 15px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff7f50;
}

.about-section, .skills-section, .projects-section, .contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section h2, .skills-section h2, .projects-section h2, .contact-section h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2em;
    color: #1c1c1e;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skill {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    width: calc(33% - 20px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.skill i {
    font-size: 2em;
    color: #ff7f50;
    margin-bottom: 10px;
}

.projects-section .project {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.projects-section .project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-section p {
    text-align: center;
}

footer {
    background: #1c1c1e;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .nav-links {
        display: none;
    }
    .skills {
        flex-direction: column;
    }
    .skill {
        width: 100%;
    }
}
