html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}
    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }

    .footer-text {
        font-size: 12px; 
    }

    .myfooter {
        width: 90%; 
        word-wrap: break-word;
        line-height: 1.6;
        margin: auto;
    }

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    background-color: #e8edf3;
    color: #000000;
    padding: 10px 10px;
    border-top: 2px solid #ffc107;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.content {
    position: relative;
    margin-top: 120px; 
    margin-bottom: 80px; 
    height: calc(100% - 200px); 
    overflow-y: auto; 
    padding: 20px;
    box-sizing: border-box;
}
.animated-image {
    transition: transform 0.3s ease;
    width: 200px;
}
    .animated-image:hover {
        transform: scale(1.1);
    }
.navbar .text-right p {
    font-size: 14px;
}

.navbar .img-fluid {
    max-width: 100px;
}

.navbar .text-center {
    font-size: 12px;
}
    .navbar .text-center p {
        font-size: 14px;
    }
.navbar .img-fluid {
    max-width: 60px;
    height: auto;
}
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
@media (max-width: 576px) {
    .footer-text {
        font-size: 12px; 
        line-height: 1.6; 
        direction: ltr; 
        text-align: CENTER;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .footer-text {
        font-size: 14px; 
        line-height: 1.8;
        direction: rtl;
        text-align: center; 
    }
}
@media (min-width: 769px) {
    .footer-text {
        font-size: 16px; 
        line-height: 2; 
        direction: rtl;
        text-align: center;
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}




