/* App Download Section Styling */
.app-download-section {
    background-color: #f8f9fa; /* Light background for the section */
    color: #343a40; /* Darker text color */
}

.app-download-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545; /* Matches your existing red */
    margin-bottom: 0.5rem;
}

.app-download-section .section-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem; /* Adjust as needed */
}

.app-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #ffffff;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Emphasize shadow on hover */
}

.app-icon {
    width: 90px; /* Adjust size as needed */
    height: 90px; /* Adjust size as needed */
    object-fit: contain;
}

.app-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #343a40;
}

.app-description {
    font-size: 1rem;
    color: #6c757d;
}

.app-download-buttons .btn {
    width: 100%; /* Make buttons full width within the card */
    max-width: 250px; /* Limit button width for better appearance */
    display: inline-flex; /* For icon alignment */
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
}

.app-download-buttons .btn i {
    font-size: 1.2rem;
}

/* RTL Adjustments (if needed, though Bootstrap handles much of it) */
body {
    direction: rtl; /* Ensure your entire site is RTL if it's not already */
    text-align: right;
}

.app-download-section .section-title,
.app-download-section .section-description,
.app-card .app-title,
.app-card .app-description {
    text-align: center; /* Override default RTL text-align if necessary for centering */
}
.app-download-buttons .btn i {
    margin-left: 0.5rem; /* Space between icon and text for RTL */
    margin-right: 0;
}