.skills-hero-wrapper-738a63ac {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-left-738a63ac {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.hero-left-738a63ac h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-left-738a63ac p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons-738a63ac {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.btn-primary-738a63ac, .btn-secondary-738a63ac {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-primary-738a63ac:hover, .btn-secondary-738a63ac:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.btn-secondary-738a63ac {
    border: 1px solid #E2E8F0;
    background: transparent;
}

/* Wavy animated line & ball */
.wavy-animation-container-738a63ac {
    position: relative;
    width: 300px;
    height: 100px;
}

.wavy-svg-738a63ac {
    width: 100%;
    height: 100%;
}

.animated-path-738a63ac {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine-738a63ac 3s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.bouncing-ball-738a63ac {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #3B82F6;
    border-radius: 50%;
    offset-path: path("M10,80 Q75,20 150,80 T290,20");
    animation: moveBall-738a63ac 3s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

/* Right Grid Area */
.hero-right-738a63ac {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creative-grid-738a63ac {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    grid-auto-rows: 110px;
    gap: 15px;
    position: relative;
}

.grid-item-738a63ac {
    position: relative;
    overflow: hidden;
    animation: floatShape-738a63ac 6s ease-in-out infinite alternate;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.grid-item-738a63ac:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    z-index: 10;
}

/* Specific item shapes exactly resembling the picture */
.shape-circle {
    border-radius: 50%;
}

.shape-pill {
    border-radius: 55px;
}

.shape-top_rounded {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
}

.shape-bottom_rounded {
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
}

/* Avatar Images */
.item-type-image {
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img-738a63ac {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Concentric ring target item */
.item-type-concentric {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.concentric-inner-738a63ac {
    width: 60%;
    height: 60%;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Keyframes */
@keyframes drawLine-738a63ac {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes moveBall-738a63ac {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

@keyframes floatShape-738a63ac {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

@media (max-width: 768px) {
    .skills-hero-wrapper-738a63ac {
        flex-direction: column;
        text-align: center;
        padding: 40px 10px;
    }
    
    .hero-left-738a63ac p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons-738a63ac {
        justify-content: center;
    }

    .wavy-animation-container-738a63ac {
        margin: 0 auto;
    }

    .creative-grid-738a63ac {
        grid-template-columns: repeat(3, 90px);
        grid-auto-rows: 90px;
        gap: 10px;
    }
}
