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

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

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) translateX(5px) rotate(2deg);
    }
    66% {
        transform: translateY(15px) translateX(-5px) rotate(-2deg);
    }
}

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

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

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

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

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

@keyframes drawLine {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

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

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

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

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

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

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

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

.hero-title {
    animation: fadeIn 0.8s ease-out;
}

.hero-description {
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-stats {
    animation: slideInUp 1s ease-out 0.4s both;
}

.search-form {
    animation: slideInUp 1s ease-out 0.6s both;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatSlow 20s ease-in-out infinite;
}

.floating-shapes .shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.floating-shapes .shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.floating-shapes .shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: 10%;
    left: 30%;
    animation-duration: 20s;
    animation-delay: -10s;
}

.floating-shapes .shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 30%;
    right: 30%;
    animation-duration: 35s;
    animation-delay: -15s;
}

.journey-step {
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
}

.journey-step:nth-child(1) { animation-delay: 0.1s; }
.journey-step:nth-child(3) { animation-delay: 0.2s; }
.journey-step:nth-child(5) { animation-delay: 0.3s; }
.journey-step:nth-child(7) { animation-delay: 0.4s; }
.journey-step:nth-child(9) { animation-delay: 0.5s; }
.journey-step:nth-child(11) { animation-delay: 0.6s; }
.journey-step:nth-child(13) { animation-delay: 0.7s; }

.journey-arrow {
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.journey-arrow:nth-child(2) { animation-delay: 0.15s; }
.journey-arrow:nth-child(4) { animation-delay: 0.25s; }
.journey-arrow:nth-child(6) { animation-delay: 0.35s; }
.journey-arrow:nth-child(8) { animation-delay: 0.45s; }
.journey-arrow:nth-child(10) { animation-delay: 0.55s; }
.journey-arrow:nth-child(12) { animation-delay: 0.65s; }

.job-card {
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    animation: morphShape 10s ease-in-out infinite;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    top: -50px;
    right: -50px;
    animation-duration: 15s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    bottom: -30px;
    left: -30px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-delay: -10s;
}

.btn-apply {
    position: relative;
    overflow: hidden;
}

.btn-apply::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-apply:hover::before {
    width: 300px;
    height: 300px;
}

.section-badge {
    display: inline-block;
    animation: slideInUp 0.6s ease-out;
}

.section-title {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.section-description {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.hero-badge {
    animation: scaleIn 0.6s ease-out;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.search-button {
    position: relative;
    overflow: hidden;
}

.search-button svg {
    transition: transform 0.3s ease;
}

.search-button:hover svg {
    transform: translateX(4px);
}

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

.job-card:hover .skill-tag {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}