﻿/* Umumiy layout heading */
.modern-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Tugma stili */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1px 24px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    /* Gradient “shine” effekti */
    .modern-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100% );
        transform: skewX(-25deg);
    }

    /* “Shine” harakatlanishi */
    .modern-btn:hover::before {
        animation: shine 1s forwards;
    }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Hover effekti */
.modern-btn:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

/* Matn */
.modern-btn .btn-text {
    z-index: 1;
}

/* Strelka animatsiyasi */
.modern-btn .btn-arrow {
    display: inline-block;
    animation: arrowMove 1.5s infinite ease-in-out;
    z-index: 1;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}
