/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 50px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
}

/* Sidebar Menu */
#side-menu {
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    padding-top: 60px;
    text-align: center;
}

#side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#side-menu ul li {
    padding: 15px;
}

#side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

#side-menu ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}


.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.portfolio-item {
    background: white;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

h3 {
    color: #333;
}

footer {
    background: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: #FFD700;
    text-decoration: none;
}