/* ========================================================================== 
   بخش دانلود
   ========================================================================== */
   .download-section {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.download-section .download-title {
    font-size: 28px;
    color: #ffc107;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.download-section .download-description {
    font-size: 18px;
    color: #f5f5f5;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.download-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--secondary);
    color: var(--text-light);
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}

.download-section .btn img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.download-section .btn:hover {
    background-color: var(--text-light);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.download-section .btn:hover img {
    transform: scale(1.2);
}

.download-section .btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}