/* Enhanced Styles for Maximum Impact */

/* Floating elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Removed glow animation */

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Hire Me Banner - Absolutely Unmissable */
.hire-me-banner {
    position: fixed;
    top: 50%;
    right: -180px;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 10px 50px;
    font-weight: 700;
    z-index: 999;
    cursor: pointer;
    transition: right 0.3s;
    animation: pulse 2s infinite;
}

.hire-me-banner:hover {
    right: -170px;
}

/* Hero Enhancements */
.hero-name {
    animation: glow 3s infinite;
    position: relative;
}

/* Removed hero name decorations */

/* Stats Counter Section - Neumorphic Style */
.stats-section {
    background: #e8f5e8;
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: #1a1a1a;
    animation: float 3s ease-in-out infinite;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #73bc7b;
}

.stat-item .label {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 0.5rem;
}

/* Testimonial Cards - Neumorphic Style */
.testimonial-card {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    margin: 2rem 0;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    text-align: right;
    font-weight: 600;
    color: var(--accent-color);
}

/* Achievement Badges */
.achievement-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 5px;
    animation: pulse 2s infinite;
}

/* Call-to-Action Floating Button - Hidden */
.floating-cta {
    display: none;
}

/* Impact Numbers with Animation */
.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Skill Progress Bars */
.skill-progress {
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
    height: 30px;
    position: relative;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #73bc7b, #5fa965);
    border-radius: 10px;
    position: relative;
    animation: fillProgress 2s ease-out;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

@keyframes fillProgress {
    0% { width: 0; }
}

.skill-progress-bar span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Timeline Enhanced */
.timeline-item.featured {
    position: relative;
}

.timeline-item.featured::after {
    content: "⭐ HIGHLIGHT";
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FFD700;
    color: #1a1a1a;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Availability Status */
.availability-status {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 997;
    animation: pulse 2s infinite;
}

.availability-status::before {
    content: "🟢";
    margin-right: 8px;
}

/* Special Offer Banner - Neumorphic Style */
.special-offer {
    background: #e8f5e8;
    color: #1a1a1a;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.special-offer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.special-offer h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #73bc7b;
}

.special-offer p {
    font-size: 1.2rem;
    position: relative;
    color: #333;
}

/* Interactive Hover Effects */
.project-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.skill-tags span:hover {
    transform: translateY(-2px);
}

/* Emphasis Text */
.emphasis {
    background: linear-gradient(45deg, #73bc7b, #5fa965);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2em;
}

/* Success Stories Section - Neumorphic Style */
.success-story {
    background: #e8f5e8;
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15);
}

.success-story::before {
    content: "SUCCESS";
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 8rem;
    opacity: 0.1;
    font-weight: 900;
    transform: rotate(-15deg);
}

/* Animated Yoga Logo */
@keyframes yogaFlip {
    0% {
        transform: rotateY(0deg) scale(1);
        color: #FFD700;
    }
    25% {
        transform: rotateY(90deg) scale(1.1);
        color: #FFA500;
    }
    50% {
        transform: rotateY(180deg) scale(1.2);
        color: #FF6B6B;
    }
    75% {
        transform: rotateY(270deg) scale(1.1);
        color: #73bc7b;
    }
    100% {
        transform: rotateY(360deg) scale(1);
        color: #FFD700;
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        letter-spacing: 20px;
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        letter-spacing: 10px;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        letter-spacing: 5px;
        filter: blur(0);
    }
}

/* Logo text - simple, no animation */
.animated-yoga {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.logo .year {
    font-size: 1.5rem !important;
    animation: sparkle 1s ease-in-out infinite;
}

/* Hero Name - Simple with shake on hover */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.hero-name {
    position: relative;
    overflow: visible;
    transition: all 0.3s;
}

.hero-name:hover {
    animation: shake 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hire-me-banner {
        display: none;
    }
    
    .availability-status {
        top: auto;
        bottom: 100px;
        right: 10px;
    }
    
    .floating-cta {
        width: 60px;
        height: 60px;
    }
}