/* Download Button Styles */
.download-button-container {
    text-align: center;
    margin-top: 30px;
}

.download-btn-wrapper {
    position: relative;
    display: inline-block;
}

.download-main-btn {
    position: relative;
    display: inline-block;
    background: rgba(12, 12, 12, 0.726);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 17px 55px 17px 25px;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.download-main-btn:hover {
    color: var(--primary-color);
}

.download-main-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 24px;
    height: 24px;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.download-main-btn:hover::before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(1) invert(0);
}

.download-main-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--white-color);
    border-radius: 0;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.download-main-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.download-options{
    display: flex;
   
    align-items: center;
}

.download-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 1px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 300px;
    margin-top: 10px;
}

.download-btn-wrapper:hover .download-dropdown {
    opacity: 1;
    visibility: visible;
}

.download-option {
    display: block;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.download-option:hover {
    background: #f8f9fa;
}

.download-option img {
    height: 40px;
    width: auto;
}