/* ========================================
   Hero Profile Image Styles
   ======================================== */

/* Hero Profile Image Container */
.hero-profile-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Picture Styling */
.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 204, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.4),
                0 0 60px rgba(255, 45, 149, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 204, 255, 0.4),
                    0 0 60px rgba(255, 45, 149, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 204, 255, 0.6),
                    0 0 80px rgba(255, 45, 149, 0.5);
        transform: scale(1.05);
    }
}

/* Hover Effect */
.profile-pic:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(0, 204, 255, 0.6),
                0 0 100px rgba(255, 45, 149, 0.5);
    animation: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-profile-img {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-profile-img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .profile-pic {
        border: 3px solid rgba(0, 204, 255, 0.5);
    }
}
