/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #121212;
    color: #ffffff;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(24, 24, 24, 0.9);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Home Section */
#home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    text-align: center;
    flex-direction: column;
    padding-top: 20px 10%;
    gap: 20px;
}

.home-content h1 {
    font-size: 42px;
    font-weight: bold;
}

.home-content h1 span {
    color: #f39c12;
}

.home-content p {
    font-size: 20px;
    margin: 10px 0;
    color: #bbbbbb;
}

.social-links a {
    margin: 10px;
    text-decoration: none;
    color: #f39c12;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

/* Profile Picture */
.home-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #f39c12;
    margin-top: 20px;
}

/* Sections */
section {
    padding: 60px 10%;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #f39c12;
}

/* Skills */
#skills ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#skills li {
    background: #222;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    list-style: none;
    border: 2px solid transparent;
    transition: 0.3s;
}

#skills li:hover {
    border-color: #f39c12;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

/* Projects */
.project {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    transition: 0.3s;
    border: 2px solid transparent; /* Added stroke effect */
}

.project:hover {
    background: #292929;
    border-color: #f39c12; /* Stroke color on hover */
    transform: scale(1.05); /* Scale up slightly */
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5); /* Shadow effect */
}

.project h3 {
    color: #f39c12;
    font-size: 24px;
    margin-bottom: 10px;
}

.project p {
    color: #bbbbbb;
    font-size: 16px;
}
#services ul{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
#services li{
    background: #222;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    list-style: none;
    border: 2px solid transparent;
    transition: 0.3s;
}
#services li:hover{
    border-color: #f39c12;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #181818;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        display: none;
    }

    nav.active ul {
        display: block;
    }

    #home {
        min-height: 80vh;
        padding: 40px 5%;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
