body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: #f4f4f4;
    text-align: center;
    transition: background 0.5s ease;
}
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
#themeColor {
    border: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}
#themeColor::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
}
#themeColor::-moz-color-swatch {
    border-radius: 50%;
    border: none;
}
#themeColor:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.3);
}
#downloadResume {
    background-color: #f8c471;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}
#downloadResume:hover {
    background: #ffdb8b;
    transform: scale(1.05);
}
.container {
    max-width: 900px;
    margin: auto;
    background: rgba(51, 51, 51, 0.9);
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}
h1, h2 {
    color: #f8c471;
    transition: color 0.3s ease;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    background: #444;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}
li:hover {
    background: #f8c471;
    color: #333;
    transform: scale(1.05);
}
.contact a {
    color: #f8c471;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.contact a:hover {
    text-decoration: underline;
    color: #ffdb8b;
}
.toggle-dark-mode {
    background: #f8c471;
    color: #333;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(248, 196, 113, 0.5);
}
.toggle-dark-mode:hover {
    background: #ffdb8b;
    transform: scale(1.1);
}

.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.profile-image img {
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    object-fit: cover; 
    border: 4px solid #f8c471; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.1); 
}