* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: beige;
    color: #333;
}

header {
    background-color: #282828;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 80px 20px;
    background-color: #4B4B4B; /* Dark Ash color */
    color: #fff;
    text-align: center;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

#typing {
    color: #ff6347;
}

.social-links a {
    margin: 0 10px;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
}

#about, #services, #contact {
    padding: 80px 20px;
    text-align: center;
}

#about h2, #services h2, #contact h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

#about p, #services p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
}

.service-card:hover {
    background-color: #f2f2f2;
    transform: translateY(-5px);
}

.service-card:hover h3 {
    color: #4B4B4B; /* Dark Ash color */
}

.service-card:hover p {
    color: #555;
}

.social-links-footer a {
    margin: 0 10px;
    color: #333;
    font-size: 25px;
}

footer {
    background-color: #282828;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer p {
    font-size: 14px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h3 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
        max-width: 90%;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 20px;
        padding: 30px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 14px;
    }

    #about, #services, #contact {
        padding: 60px 20px;
    }

    #about h2, #services h2, #contact h2 {
        font-size: 30px;
    }

    #about p, #services p {
        font-size: 16px;
        max-width: 90%;
    }

    footer {
        padding: 15px 20px;
    }

    footer p {
        font-size: 12px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header nav ul li a {
        font-size: 16px;
    }

    .social-links a, .social-links-footer a {
        font-size: 20px;
    }
    
}
.project-list {
    margin-top: 15px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    transition: max-height 0.3s ease;
}

.project-item {
    margin-bottom: 10px;
    padding-left: 10px;
}

.hidden {
    display: none;
}

