@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.animate-blink {
    animation: blink 1s ease-in-out infinite;
}


.transulate-btn {
    transition: transform 0.3s ease-in-out;
}

#show-btn:hover+.transulate-btn {
    transform: translateX(2px) rotate(45deg);
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-top .shape-fill {transulate-btn
    fill: #F9FAFB;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseTarget {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.pulse-target {
    animation: pulseTarget 2s ease-in-out infinite;
}

.diagonal-split {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(142, 165, 229, 0.9) 0%, rgba(17, 32, 55, 0.8) 100%);
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: rgb(209, 22, 22);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.6);
}

/* Mission Section Text - Scroll Animation Only */
.mission-section .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: none !important;
}

.mission-section .fade-in-up.animate-in {
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.mission-section .fade-in-up.animate-in:nth-child(1) { animation-delay: 0s; }
.mission-section .fade-in-up.animate-in:nth-child(2) { animation-delay: 0.2s; }
.mission-section .fade-in-up.animate-in:nth-child(3) { animation-delay: 0.4s; }
.mission-section .fade-in-up.animate-in:nth-child(4) { animation-delay: 0.6s; }
.mission-section .fade-in-up.animate-in:nth-child(5) { animation-delay: 0.8s; }
.mission-section .fade-in-up.animate-in:nth-child(6) { animation-delay: 1s; }


.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}