/* Existing Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to left, #ffffff, #dddddd);
    margin: 0;
    padding: 0;
    animation: backgroundFade 5s ease-in-out infinite;
}

header {
    background-color: #db9d0e;
    color: white;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 100px; /* Reduced gap for a more compact look */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 17px; /* Slightly larger font size */
}

nav ul li a:hover {
    color: #add8e6;
}

.projects-details {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.projects-details h1 {
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.project {
    background: #b6efa7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    margin: 20px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.project h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #050505;
}

.project p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #0e0e0e;
}

.project img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    color: #ffffff;
    background-color: #00bcd4;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
    background-color: #0097a7;
    transform: scale(1.1);
}
