﻿body {
    background: url('/15.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Tajawal', Arial, sans-serif;
    direction: rtl;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

    /* طبقة شفافة للواترمارك */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 0;
    }

.hero {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

    .hero img {
        width: 120px;
        height: 100px;
        object-fit: contain;
        filter: drop-shadow(0 0 10px #ffffff);
        transition: transform 0.5s ease;
    }

        .hero img:hover {
            transform: rotate(-10deg) scale(1.1);
        }

    .hero h1 {
        font-weight: 700;
        color: wheat;
        margin-top: 10px;
        animation: slideIn 1s ease;
    }

.hero-sub {
    background-color: #ffffff;
    color: #2e7d32;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: popIn 0.8s ease;
}

/* الحاوية */
.container {
    position: relative;
    z-index: 1;
}

/* الكارد */
.card {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

.card-header {
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

input::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* حركة عند التركيز على الحقل */
input:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 10px rgba(46,125,50,0.5);
    transition: 0.3s ease;
}

/* الزر */
button.btn-success {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    button.btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(46,125,50,0.4);
    }

/* أنيميشن */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}
.footer {
    background-color: #ffffff; /* نفس ستايل hero-sub */
    color: #2e7d32;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    margin-top: 170px;
    border-top: 3px solid #2e7d32; /* خط علوي أخضر أنيق */
    font-family: 'Tajawal', sans-serif;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
    width: 100%; /* ياخذ عرض الشاشة كامل */
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease;
}

    .footer p {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
    }
