* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #2D3748;
    min-height: 100vh; 
    padding-top: 80px; 
}

nav {
    background: #2D3748;
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    z-index: 1000;
}

ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

ul a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

ul a:hover {
    color: #f44336;
    background: rgba(255, 255, 255, 0.1);
}

.welcome {
    background-color:  white;
    width: 100%;
    height: auto;
    align-content: center;
}
.profile-pic {
    width: 200px; 
    height: 200px;
    border-radius: 50%;
    margin: 0 auto; 
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px; 
}

h1 {
    text-align: center;
    color:  #4A5568;
    padding-top: 20px;
    font-size: clamp(2rem, 5vw, 3.5rem); 
}
h2 {
    text-align: center;
    color:  #4A5568;
    font-size: clamp(1.25rem, 3vw, 2rem);
    padding: 20px 0 50px 0;
}

p {
    text-align: center;
    color: #4A5568;
    font-size: 1.1rem;
    padding: 20px 0 50px 0;
    max-width: 800px;
    margin: 0 auto; 
    line-height: 1.6; 
}


.projects {
    background-color: orange;
    color: blueviolet;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600; 
    transition: all 0.3s ease;
}
.explore a {
    text-decoration: none; 
    color: blueviolet; 
    font-weight: 600;
    transition: all 0.3s ease; 
}

button:hover {
    background-color: blueviolet;
    color: #fff;
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button {
    display: block;
    margin: 20px auto;
}

h3 {
    text-align: center;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    padding: 20px 0 50px 0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.explore {
    background-color: #fff;
    color: #fff;
    border: none;
    padding: 12px 24px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600; 
    transition: all 0.3s ease; 
}

.explore {
    display: block;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 350px;
    }
    
    nav {
        padding: 0 20px; 
    }
}

h4 {
    text-align: center;
    color: #333; 
    font-size: 1.5rem;
    padding: 20px 0;
}

.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.card-content {
    width: 300px;
    border: 1px solid #ddd; 
    border-radius: 10px;
    padding: 25px; 
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
}

.card-content:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
}

.card-content p {
    color: #666;
    text-align: left;
    padding: 0 0 20px 0; 
}
.social-media{
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}
footer {
    background-color: #2D3748;
    color: #fff;
    text-align: center;
    align-content: center;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer a {
    color: whitesmoke;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: red;
}
footer p{
    color: white;
}
