/* ========================================
   Profile Card Styles - Matching index.html Theme
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Shapes */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

body::before {
    width: 400px;
    height: 400px;
    background: #667eea;
    top: -100px;
    left: -100px;
}

body::after {
    width: 350px;
    height: 350px;
    background: #764ba2;
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(102, 126, 234, 0.8), 0 0 50px rgba(102, 126, 234, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.profile-card1 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card2 {
         background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card3 {
     background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card1:hover {
    transform: translateY(-10px);
     transform: scale(1.03);
    box-shadow: 0 0 10px black;
}
.profile-card2:hover {
    transform: translateY(-10px);
    transform: scale(1.03);
    box-shadow: 0 0 10px black;
}
.profile-card3:hover {
    transform: translateY(-10px);
    transform: scale(1.03);
    box-shadow: 0 0 10px black;
}

.profile-image {
    margin-bottom: 10px
}

.profile-image img {
    width: 140px;
    height: 140px;
    border-radius: 80%;
    object-fit: cover;
    border: 5px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.last-name {
    color: #667eea;
    background: transparent;
}

.title {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}
.title:hover{
    cursor: pointer;
   transition: translateY(-10px);
   transform: scale(1.03);
    box-shadow: 0 0 10px #555 0 0 20px #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}
.social-link.whatsapp:hover {
        box-shadow: 0 0 10px #25D366, 0 0 20px #25D366;
}

.social-link.email {
    background: #EA4335;
    color: white;
}
.social-link.email:hover {
    box-shadow: 0 0 10px #EA4335, 0 0 10px #EA4335;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}
.social-link.instagram:hover {
    box-shadow: 0 0 10px #f09433;
}

.social-link.github {
    background: #333;
    color: white;
}
.social-link.github:hover {
    box-shadow: 0 0 10px black, 0 0 20px rgb(53, 48, 48);
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}
.social-link.linkedin:hover {
    box-shadow: 0 0 10px skyblue, 0 0 10px rgb(87, 87, 176);
}

.social-link:hover {
    transform: scale(1.15);
   }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #667eea;
}

.contact-link i {
    font-size: 18px;
    color: #667eea;
}

.bio {
    margin-bottom: 25px;
}

.bio p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
h3{
    margin: 10px;
    background-color: #d9dff6 ;
    border-radius: 30px;
    transition: transform 0.3s ease;
}
h3:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #667eea;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #764ba2;
}

/* Responsive Design */
@media (max-width: 480px) {
    .profile-card {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .profile-image img {
        width: 120px;
        height: 120px;
    }
}
