@import url('https://fonts.googleapis.com/css?family=Cairo|Open+Sans&display=swap');
body {
  font-family: 'Cairo', sans-serif;
}
h5{
    font-size:1.0rem;
}
p{
    font-size:0.85rem;
}
h1 {
    font-size: 1.6rem;
}
h2 {
    font-size: 1.4rem;
}

/* Footer */
.footer {
    margin-top: 25px;
}
.index-page .footer {
    margin-top: 0;
}
.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-links li {
    transition: transform 0.2s ease;
}

.footer-links li:hover {
    transform: translateX(<?php echo ($language=='ar') ? '-5px' : '5px'; ?>);
}

.social-links a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* RTL Support */
[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

/* Footer */