body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    margin: 0;
}

#resume-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

#contact a {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.tab-buttons {
    margin-bottom: 1rem;
}

.tab-btn {
    margin: 5px;
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #0070f3;
    color: white;
    transition: background 0.3s;
}

.tab-btn:hover {
    background: #005bb5;
}

.tab-content {
    display: none;
    opacity: 0;
    transform-style: preserve-3d;
}

.tab-content.active {
    display: block;
}

/* Glow effect on hover */
.tab-btn:hover {
    background: #005bb5;
    box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}

/* Fancy name styling */
#name {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

#role {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

/* Particles background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
}