/* General Styles */
@font-face {
    font-family: 'MyCustomFont';
    src: url('./font.ttf') format('truetype');
    }
    body {
        font-family: 'MyCustomFont';
        margin: 0;
        padding: 0;
        direction: rtl; /* Set right-to-left text direction for Arabic */
        text-align: center;
        background-color: #ffe5c0; /* Background color */
        color: #333; /* Text color */
        height: 100vh; /* Full-screen height */
        display: flex; /* Activate Flexbox */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }
    

/* Download Apps Section */
.download-apps {
    
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

.download-apps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333; /* Text color */
}

.download-apps a {
    margin: 10px;
    display: inline-block;
    text-decoration: none;
}

.download-apps img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.download-apps img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-apps {
        padding: 10px;
        margin: 10px;
    }

    .download-apps h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .download-apps img {
        max-width: 120px;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

    .contact-info {
        font-size: 0.8rem;
    }
}
