body {
    font-family: 'Poppins', sans-serif;
    background: #f0f0f0;
    color: #222;
    margin: 0;
    padding: 0;
    transition: background 0.3s, color 0.3s;
}

.dark {
    background: #121212;
    color: #f0f0f0;
}

.resume {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.3s;
}

.dark .resume {
    background: #1e1e1e;
}

aside {
    background: #2d3748;
    color: white;
    padding: 20px;
    width: 280px;
    text-align: center;
}

aside img.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 10px;
}

aside h2 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-info li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 30px;
}

h1,
h2 {
    color: #2b6cb0;
    margin-top: 0;
}

section {
    margin-bottom: 30px;
}

ul {
    padding-left: 20px;
}

.tag {
    display: inline-block;
    background: #edf2f7;
    color: #2b6cb0;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 14px;
}

.dark .tag {
    background: #2d3748;
    color: #90cdf4;
}

.copy-container {
    position: relative;
    cursor: pointer;
}

#phone-number:hover {
    color: #38b2ac;
}

.copied-msg {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #38a169;
    color: white;
    padding: 3px 6px;
    font-size: 10px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.copied-msg.visible {
    opacity: 1;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    border: none;
    background: #e2e8f0;
    color: #1a202c;
    font-size: 20px;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.dark .theme-toggle {
    background: #2d3748;
    color: #e2e8f0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}