/* ===== ANIMATION KEYFRAMES ===== */


/* Fade In Up Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade In Left Animation */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Fade In Right Animation */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Scale In Animation */

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Icon Pulse Animation */

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}


/* Icon Bounce Animation */

@keyframes iconBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* Skill Tag Slide Animation */

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Number Count Up Animation */

@keyframes countPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* Glow Ring Animation */

@keyframes glowRing {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.6), 0 0 30px rgba(254, 202, 87, 0.3);
    }
}


/* Floating Animation for Icons */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* Rotate Animation */

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Shimmer Effect */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* Card Glow Effect */

@keyframes cardGlow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 0 60px rgba(254, 202, 87, 0.2);
    }
}


/* Border Gradient Animation */

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Sparkle Effect */

@keyframes sparkle {
    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Shake Animation */

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}


/* Neon Pulse Effect */

@keyframes neonPulse {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.3), 0 0 10px rgba(255, 107, 107, 0.2), 0 0 20px rgba(255, 107, 107, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5), 0 0 20px rgba(255, 107, 107, 0.3), 0 0 40px rgba(255, 107, 107, 0.2), 0 0 60px rgba(254, 202, 87, 0.1);
    }
}


/* Gradient Text Animation */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Parallax Float */

@keyframes parallaxFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}


/* Twinkle Star */

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}


/* Particle Float Animation */

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}


/* Progress Shine */

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}


/* Border Spin */

@keyframes borderSpin {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}


/* Float Particle Background */

@keyframes floatParticle {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.7;
    }
}


/* ===== EXPERIENCE SUMMARY ===== */

.experience-summary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.exp-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 200px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exp-card:hover::before {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

.exp-card:nth-child(1) {
    animation-delay: 0.1s;
}

.exp-card:nth-child(2) {
    animation-delay: 0.2s;
}

.exp-card:nth-child(3) {
    animation-delay: 0.3s;
}

.exp-card:nth-child(4) {
    animation-delay: 0.4s;
}

.exp-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b6b;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.25), 0 0 20px rgba(254, 202, 87, 0.15);
}

.exp-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 12px;
    font-size: 1.3rem;
    color: #0f0a1f;
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
}

.exp-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.exp-card:hover .exp-icon::after {
    left: 100%;
}

.exp-card:hover .exp-icon {
    animation: iconBounce 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.exp-content {
    display: flex;
    flex-direction: column;
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
}

.exp-card:hover .exp-number {
    animation: countPulse 0.5s ease;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.exp-label {
    font-size: 0.85rem;
    color: #c4b5d8;
    margin-top: 0.2rem;
}


/* ===== SKILLS GRID ===== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.skill-category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.skill-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #ff6b6b);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category-card:hover::before {
    opacity: 1;
    animation: borderGradient 3s ease infinite;
}

.skill-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.skill-category-card:hover::after {
    opacity: 1;
}

.skill-category-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.skills-grid .skill-category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.skills-grid .skill-category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.skills-grid .skill-category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.skills-grid .skill-category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.skills-grid .skill-category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.skill-category-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 107, 0.2);
}

.skill-category-card:hover .category-icon {
    animation: float 1s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
}

.category-icon.frontend {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.category-icon.backend {
    background: linear-gradient(135deg, #2196F3, #1565C0);
}

.category-icon.database {
    background: linear-gradient(135deg, #FF9800, #E65100);
}

.category-icon.tools {
    background: linear-gradient(135deg, #9C27B0, #6A1B9A);
}

.category-icon.aiml {
    background: linear-gradient(135deg, #FF5722, #BF360C);
}

.category-title h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.category-level {
    font-size: 0.75rem;
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-skills {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover::before {
    left: 100%;
}

.skill-tag:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.skill-tag i {
    font-size: 1.1rem;
    color: #ff6b6b;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-tag:hover i {
    animation: shake 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.skill-tag span {
    font-size: 0.9rem;
    color: #c4b5d8;
    flex: 1;
    transition: color 0.3s ease;
}

.skill-tag:hover span {
    color: #ffffff;
}

.skill-percent {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skill-tag:hover .skill-percent {
    background: rgba(255, 107, 107, 0.3);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}


/* ===== LEARNING SECTION ===== */

.learning-section {
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.learning-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.learning-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
}

.learning-title i {
    color: #feca57;
    animation: float 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(254, 202, 87, 0.5);
}

.learning-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.learning-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(254, 202, 87, 0.1);
    border: 1px solid rgba(254, 202, 87, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #feca57;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learning-tags .learning-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.learning-tags .learning-tag:nth-child(2) {
    animation-delay: 0.2s;
}

.learning-tags .learning-tag:nth-child(3) {
    animation-delay: 0.3s;
}

.learning-tags .learning-tag:nth-child(4) {
    animation-delay: 0.4s;
}

.learning-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 202, 87, 0.2), transparent);
    transition: left 0.5s ease;
}

.learning-tag:hover::before {
    left: 100%;
}

.learning-tag:hover {
    background: rgba(254, 202, 87, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 202, 87, 0.3);
    border-color: #feca57;
    text-shadow: 0 0 10px rgba(254, 202, 87, 0.3);
}

.learning-tag:hover .learning-icon {
    animation: rotate 0.5s ease;
    text-shadow: 0 0 15px rgba(254, 202, 87, 0.5);
}

.learning-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
}


/* ===== COMPETENCIES SECTION ===== */

.competencies-section {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.competencies-title {
    text-align: center;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.competencies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.competency-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    background: rgba(0, 210, 211, 0.1);
    border: 1px solid rgba(0, 210, 211, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #00d2d3;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.competency-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 211, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.competency-item:hover::before {
    opacity: 1;
}

.competency-item:hover {
    background: rgba(0, 210, 211, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 211, 0.2), 0 0 30px rgba(0, 210, 211, 0.1);
}

.competency-item i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.competency-item:hover i {
    animation: sparkle 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 210, 211, 0.5);
}

@media (max-width: 768px) {
    .experience-summary {
        gap: 1rem;
    }
    .exp-card {
        min-width: 150px;
        padding: 1rem;
    }
    .exp-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .exp-number {
        font-size: 1.4rem;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .learning-tags,
    .competencies-grid {
        gap: 0.8rem;
    }
}


/* ===== NEW EXTRA EFFECTS FOR SKILLS SECTION ===== */


/* Parallax Floating Orbs */

.skills-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: parallaxFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00d2d3, #3498db);
    top: 50%;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}


/* Particle Stars Background */

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 35%;
    left: 45%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 50%;
    left: 25%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 65%;
    left: 70%;
    animation-delay: 2s;
}

.star:nth-child(6) {
    top: 75%;
    left: 35%;
    animation-delay: 2.5s;
}

.star:nth-child(7) {
    top: 85%;
    left: 55%;
    animation-delay: 0.3s;
}


/* ===== Skill Detail Card Extra Effects ===== */


/* Base Skill Detail Card */

.skill-detail-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}


/* Glow Effect on Hover */

.skill-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.skill-detail-card:hover::before {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}


/* Particle Effects on Hover */

.skill-detail-card .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.skill-detail-card:hover .particle:nth-child(1) {
    top: 10%;
    left: 10%;
    background: #ff6b6b;
    animation: particleFloat 0.8s ease-out forwards;
    animation-delay: 0s;
}

.skill-detail-card:hover .particle:nth-child(2) {
    top: 20%;
    right: 15%;
    background: #feca57;
    animation: particleFloat 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.skill-detail-card:hover .particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    background: #00d2d3;
    animation: particleFloat 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.skill-detail-card:hover .particle:nth-child(4) {
    bottom: 15%;
    right: 10%;
    background: #9b59b6;
    animation: particleFloat 0.8s ease-out forwards;
    animation-delay: 0.3s;
}


/* 3D Tilt Effect */

.skill-detail-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(255, 107, 107, 0.2), 0 0 40px rgba(254, 202, 87, 0.15);
}


/* Gradient Border Animation */

.skill-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #00d2d3, #9b59b6, #ff6b6b);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientMove 4s ease infinite;
    pointer-events: none;
}

.skill-detail-card:hover::after {
    opacity: 1;
}


/* Icon Elastic Bounce */

.skill-detail-card .skill-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.skill-detail-card:hover .skill-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.8));
    animation: iconBounce 0.5s ease;
}


/* Skill Info */

.skill-info {
    position: relative;
    z-index: 1;
}

.skill-info h4 {
    transition: all 0.3s ease;
}

.skill-detail-card:hover .skill-info h4 {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}


/* Level Badge */

.skill-level {
    position: relative;
    z-index: 1;
}

.level-badge {
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.level-badge.expert {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(254, 202, 87, 0.2));
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.level-badge.advanced {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.2), rgba(0, 210, 211, 0.2));
    border: 1px solid rgba(254, 202, 87, 0.4);
    color: #feca57;
}

.level-badge.intermediate {
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.2), rgba(155, 89, 182, 0.2));
    border: 1px solid rgba(0, 210, 211, 0.4);
    color: #00d2d3;
}

.level-badge.learning {
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid rgba(155, 89, 182, 0.4);
    color: #9b59b6;
}

.skill-detail-card:hover .level-badge {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}


/* Neon Pulse for Completed Cards */

.skill-detail-card.completed {
    animation: neonPulse 3s ease-in-out infinite;
}

.skill-detail-card.completed:hover {
    animation: none;
}


/* Mirror Reflection Effect */

.skill-detail-card .reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
    transform: scaleY(-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(3px);
}

.skill-detail-card:hover .reflection {
    opacity: 0.4;
}


/* Progress Bar Animation */

.skill-progress-container {
    position: relative;
    width: 100%;
    margin-top: 0.8rem;
}

.skill-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.skill-detail-card:hover .skill-progress-fill {
    width: var(--skill-percentage, 85%);
}

.skill-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}


/* ===== Category Section Enhancement ===== */

.skill-category-section {
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 3rem;
}

.skill-category-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(254, 202, 87, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.skill-category-section:hover::before {
    opacity: 1;
}

.category-section-header {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.skill-category-section:hover .category-section-header {
    transform: translateX(10px);
}

.skill-category-section:hover {
    transform: skewX(-1deg);
}

.skill-category-section:hover .category-section-header,
.skill-category-section:hover .skill-cards-grid {
    transform: skewX(1deg);
}


/* ===== Experience Card Enhanced Effects ===== */

.exp-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exp-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #00d2d3);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exp-card:hover::before {
    opacity: 1;
    animation: borderSpin 3s linear infinite;
}

.exp-card:hover .exp-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
}


/* ===== Section Title Enhancement with Hover Effects ===== */

.skills .section-title {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #00d2d3, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease infinite;
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skills .section-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.skills:hover .section-title::after {
    width: 80%;
}


/* Title Card Glow on Hover */

.skills .section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.skills .section-title:hover::before {
    width: 150%;
    height: 150px;
    opacity: 1;
}


/* Subtitle Hover Effect */

.skills .section-subtitle {
    transition: all 0.3s ease;
}

.skills:hover .section-subtitle {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}


/* ===== Completed Tags Enhancement ===== */

.completed-tag {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    animation: glowRing 3s ease-in-out infinite;
}

.completed-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    transition: left 0.5s ease;
}

.completed-tag:hover::before {
    left: 100%;
}

.completed-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4), 0 0 30px rgba(254, 202, 87, 0.3);
    border-color: rgba(255, 107, 107, 0.6);
    background: rgba(255, 107, 107, 0.15);
    animation: none;
}


/* Completed Tag Icon Effects */

.completed-tag i {
    transition: all 0.3s ease;
    color: #ff6b6b;
}

.completed-tag:hover i {
    color: #feca57;
    text-shadow: 0 0 15px rgba(254, 202, 87, 0.8);
    transform: scale(1.2);
}


/* Completed Tag Text Effects */

.completed-tag span {
    transition: all 0.3s ease;
    color: #c4b5d8;
}

.completed-tag:hover span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Completed Tag Border Animation */

.completed-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #00d2d3);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.completed-tag:hover::after {
    opacity: 1;
    animation: borderGradient 2s ease infinite;
}


/* Reflection Effect */

.completed-tag .reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 107, 107, 0.1), transparent);
    transform: scaleY(-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(2px);
}

.completed-tag:hover .reflection {
    opacity: 0.5;
}


/* ===== Learning Tags Enhancement ===== */

.learning-tag {
    position: relative;
    overflow: hidden;
}

.learning-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 202, 87, 0.3), transparent);
    transition: left 0.5s ease;
}

.learning-tag:hover::before {
    left: 100%;
}

.learning-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(254, 202, 87, 0.4);
}


/* ===== Multi-Color Glow on Hover ===== */

.skill-detail-card:hover {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4), 0 0 40px rgba(254, 202, 87, 0.3), 0 0 60px rgba(0, 210, 211, 0.2), 0 20px 40px rgba(0, 0, 0, 0.3);
}


/* ===== Wave Stagger Animation ===== */

@keyframes waveStagger {
    0%,
    100% {
        transform: translateY(0) rotateX(0);
    }
    25% {
        transform: translateY(-8px) rotateX(3deg);
    }
    75% {
        transform: translateY(4px) rotateX(-2deg);
    }
}

.skill-detail-card.wave-animation {
    animation: waveStagger 3s ease-in-out infinite;
}

.skill-detail-card.wave-animation:nth-child(1) {
    animation-delay: 0s;
}

.skill-detail-card.wave-animation:nth-child(2) {
    animation-delay: 0.15s;
}

.skill-detail-card.wave-animation:nth-child(3) {
    animation-delay: 0.3s;
}

.skill-detail-card.wave-animation:nth-child(4) {
    animation-delay: 0.45s;
}

.skill-detail-card.wave-animation:nth-child(5) {
    animation-delay: 0.6s;
}

.skill-detail-card.wave-animation:hover {
    animation: none;
    transform: translateY(-12px) scale(1.02);
}


/* ===== Floating Background Particles ===== */

.skills .skills-bg-effects .particle-bg {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 107, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s ease-in-out infinite;
}

.skills .skills-bg-effects .particle-bg:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.skills .skills-bg-effects .particle-bg:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    background: rgba(254, 202, 87, 0.6);
}

.skills .skills-bg-effects .particle-bg:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
    background: rgba(0, 210, 211, 0.6);
}

.skills .skills-bg-effects .particle-bg:nth-child(4) {
    top: 60%;
    left: 70%;
    animation-delay: 6s;
    background: rgba(155, 89, 182, 0.6);
}

.skills .skills-bg-effects .particle-bg:nth-child(5) {
    top: 80%;
    left: 20%;
    animation-delay: 8s;
}

.skills .skills-bg-effects .particle-bg:nth-child(6) {
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    background: rgba(254, 202, 87, 0.6);
}

.skills .skills-bg-effects .particle-bg:nth-child(7) {
    top: 30%;
    left: 60%;
    animation-delay: 12s;
    background: rgba(0, 210, 211, 0.6);
}

.skills .skills-bg-effects .particle-bg:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-delay: 14s;
}


/* ===== Scroll-Triggered Reveal Animation ===== */

.skills .skill-detail-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skills .skill-detail-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}