/* Container for the download buttons */
.download-btn-box {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-top: 20px; /* Space above the buttons */
    justify-content: flex-start;
}

/* General button styles */
.appstore-icon-btn, .google-icon-btn {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* App Store button specific styles */
.appstore-icon-btn {
    border: 1px solid #34a853; /* App Store blue */
    background-color: #34a853; /* App Store blue */
    color: white;
}

.appstore-icon-btn i {
    margin-right: 10px;
    font-size: 24px; /* Icon size */
}

/* Google Play button specific styles */
.google-icon-btn {
    border: 1px solid #debc61; /* Google Play green */
    background-color: #debc61; /* Google Play green */
    color: white;
}

.google-icon-btn i {
    margin-right: 10px;
    font-size: 24px; /* Icon size */
}

/* Hover Effects for both buttons */
.appstore-icon-btn:hover, .google-icon-btn:hover {
    transform: translateY(-5px); /* Slightly lift the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Increase shadow on hover */
}

/* Add focus styles for accessibility */
.appstore-icon-btn:focus, .google-icon-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2); /* Outline on focus */
}

/* Responsiveness for mobile devices */
@media (max-width: 767px) {
    .download-btn-box {
        flex-direction: column; /* Stack buttons vertically on small screens */
        gap: 15px;
    }
}
