* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f4f4f8;
    color: #333;
    line-height: 1.6;
}

/* Style the header as a navigation bar */
.navbar {
    background-color: #2c3e50;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar h1 {
    font-size: 1.5rem;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #1abc9c;
}

/* Section Styling */
section {
    padding: 60px 0;
    width: 80%;
    margin: 0 auto;
}

/* About Me Section */
#about {
    text-align: center;
}
.about-section {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.profile-picture {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #2c3e50;
}

.about-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}
/* Work Section */
#work {
    background-color: #ecf0f1;
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

#project-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    
}


.project {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project h2 {
    margin-bottom: 15px;
}

.project h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project h2 a:hover {
    color: #1abc9c;
}

.project p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.project img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px; 
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 5px;
}
.project-1 {
    border: 2px solid #1abc9c;
    padding: 25px; 
    margin-bottom: 40px; 
    background-color: #f0f0f0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.project-1 img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.project-1 h2 {
    font-size: 1.8rem;
    color: #2c3e50; 
}

#description {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

#description {
    font-weight: bold;
}

footer {
    background-color: #2c3e50; 
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

footer h1, footer h2 {
    color: white;
    margin-bottom: 20px;
}

footer h1 {
    font-size: 1.5rem;
}

footer h2 {
    font-size: 1.2rem;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1abc9c;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    section {
        width: 90%;
    }
}



