.elementor-65 .elementor-element.elementor-element-778a273{--display:flex;}/* Start custom CSS for html, class: .elementor-element-beaf319 */.btn-download {
    display: inline-block;
    background: linear-gradient(45deg, #2e7d32, #4caf50, #2e7d32);
    background-size: 200% auto;
    color: white;
    padding: 22px 50px;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 50px; /* Rounded corners zyada click-friendly hote hain */
    font-weight: 900;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear, bounce 2s infinite ease-in-out;
}

/* Button ke andar chamak (Shimmer) */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Halka sa hilne wala animation (Attention ke liye) */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-download:hover {
    transform: scale(1.1) !important;
    background: #1b5e20;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.5);
}

/* Chota sa "Free" tag button ke upar */
.btn-download::before {
    content: "FREE";
    position: absolute;
    top: -2px;
    right: 15px;
    background: #ff0000;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 0 0 5px 5px;
    letter-spacing: 1px;
}/* End custom CSS */