﻿/* Wrapper for downloads */
.download-wrapper {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Heading */
.download-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1c7c54;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

    .download-heading::after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: #ffd700;
        margin: 12px auto 0;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .download-heading:hover::after {
        width: 180px;
    }
/* Download list */
.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .download-list li {
        margin-bottom: 15px;
    }

    .download-list a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #1c4e80;
        font-weight: 500;
        font-size: 16px;
        background: #fafafa;
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }

        .download-list a:hover {
            background: #f1f9f6;
            color: #1c7c54;
            border-color: #d4af37;
            transform: translateX(4px);
        }

        /* Icon */
        .download-list a::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #d4af37;
            margin-right: 10px;
            font-size: 18px;
        }
        /* Reset old ::before */
        .download-list a::before {
            content: none;
        }

    /* Icon beside links */
    .download-list i {
        color: #d4af37;
        font-size: 20px;
        margin-right: 12px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .download-list a:hover i {
        color: #1c7c54;
        transform: scale(1.2);
    }
