/* Reusing your existing styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Shared animations moved to css/styles.css */

.curriculum-accordion.active .fa-chevron-down {
    transform: rotate(180deg);
}

.stats-card {
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Office admin specific styles */
.skill-pill {
    transition: all 0.3s ease;
}

.skill-pill:hover {
    background-color: #f15a24;
    color: white;
    transform: scale(1.05);
}

.software-badge {
    transition: all 0.3s ease;
}

.software-badge:hover {
    background-color: #f15a24;
    color: white;
    transform: translateY(-3px);
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1101;
    text-decoration: none;
    max-width: 220px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    overflow: hidden;
    min-width: 100px;
}

.whatsapp-text-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.3;
}

.whatsapp-text-inner.show-second {
    transform: translateY(-100%);
}

.whatsapp-hint {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-message {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(20deg) scale(1.1);
}

/* Pulsing animation for attention */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
}

.whatsapp-btn.pulse {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

/* Mobile styles */
@media (max-width: 760px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 13px;
        max-width: 150px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    
    .whatsapp-hint {
        font-size: 11px;
    }
    
    .whatsapp-message {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 60px;
        right: 6px;
        padding: 10px 15px;
        font-size: 12px;
        max-width: 120px;
        gap: 8px;
    }
    
    .whatsapp-icon {
        width: 14px;
        height: 14px;
        font-size: 14px;
    }
    
    .whatsapp-hint {
        font-size: 8px;
        color:#c3ff00;
    }
    
    .whatsapp-message {
        font-size: 10px;
    }
}