.about {
    background-color: #0a192f;
    color: #e6f1ff;
    display: grid;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to left, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), 
    url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNjUyOXwwfDF8c2VhcmNofDJ8fGJsdXJ8ZW58MHx8fHwxNjg3NTY5NzA1&ixlib=rb-4.0.3&q=80&w=1080') no-repeat center center fixed;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

 #main-body {
    background-color: #000000;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    /*display: flex;
    flex-direction: column;
    min-height: 100vh; */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    padding: 15px 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    color: #e6f1ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.navbar a:hover {
    color: #ffcc00;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button,
.submit {
    background-color: #0a192f;
    color: #e6f1ff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover,
.submit:hover {
    background-color: #ffcc00;
    color: #0a192f;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #64ffda;
    width: 0;
    transition: width 0.2s ease-out;
    z-index: 1001;
}
.scroll-progress.active {
    width: 100%;
}
.scroll-progress.hidden {
    width: 0;
}
.scroll-progress.visible {
    width: 100%;
}
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .project-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 15px;
    }
}

footer {
    background-color: #0a192f;
    color: #e6f1ff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}