/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #1E1E28; /* Dark space background */
    color: #FFFFFF; /* White text */
}

header {
    background: #333;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFA500; /* Dark orange color for hover effect */
}

section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #2A2A3A; /* Darker gray for sections */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px) scale(1.02); /* Lift and scale on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* Deeper shadow on hover */
}

h1, h2 {
    color: #FFA500; /* Dark orange color for headings */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif; /* Serif font for headings */
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif; /* Serif font for headings */
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #3A3A3A; /* Dark gray for list items */
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for list items */
}

ul li:hover {
    transform: translateY(-5px) scale(1.02); /* Lift and scale on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #555;
    border-radius: 5px;
    background: #3A3A3A;
    color: #FFFFFF;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus {
    transform: scale(1.02); /* Slight scale on focus */
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5); /* Glow effect on focus */
}

form button {
    background: #FFA500; /* Dark orange color for button */
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background: #FF4A3D; /* Darker orange on hover */
    transform: translateY(-3px); /* Lift on hover */
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #FFFFFF;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #2A2A3A; /* Darker gray for sections */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about:hover {
    transform: translateY(-10px) scale(1.02); /* Lift and scale on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* Deeper shadow on hover */
}