html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    position: relative;
    min-height: 100vh;
    margin: 0
}
    body::before {
        content: "";
        position: fixed; /* تثبيت الخلفية */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/background.jpeg');
        background-size: cover;
        opacity: 0.8; /* نسبة الشفافية */
        z-index: -1; /* تخليها ورا المحتوى */
    }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.nav-link:hover {
    color: #fff !important;
    background-color: #e95420 !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}
footer.footer {
    background-color: #000 !important;
    color: #fff !important;
    font-family: 'Cairo', sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
}

    footer.footer h5 {
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 2px solid #e95420;
        display: inline-block;
        padding-bottom: 5px;
        font-size: 1.1rem;
    }

    footer.footer p,
    footer.footer li,
    footer.footer a {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #ddd !important;
        transition: color 0.3s ease;
    }

        footer.footer a:hover {
            color: #e95420 !important;
        }

    footer.footer ul {
        padding-left: 0;
        list-style: none;
    }

    footer.footer .fab {
        font-size: 1.4rem;
        margin-right: 12px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

        footer.footer .fab:hover {
            color: #e95420;
            transform: scale(1.2);
        }




