
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 2rem 0;
}

/* ... (Your existing CSS) ... */

.animate-section {
    opacity: 0; 
    transform: translateY(50px); 
}

.animate-title {
    opacity: 0;
    transform: translateX(-50px); 
}

.animate-text {
    opacity: 0;
    transform: translateY(20px); 
}

.animate-button {
    opacity: 0;
    transform: scale(0.8); 
}

.animate-input {
    opacity: 0;
    transform: translateX(-50px); 
}

/* ... (Your existing CSS) ... */

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ... (Your existing CSS) ... */

.project {
    opacity: 0; 
    transform: scale(0.8); 
    transition: all 0.5s ease-in-out; 
}

.project:hover {
    transform: scale(1.1); 
    z-index: 1; 
}

/* ... (Your existing CSS) ... */

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
}

.project {
    border: 1px solid #ccc;
    padding: 1rem;
    text-align: center;
}

.project img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}