body{
    margin:0;
    font-family: Arial;
    direction: rtl;
    background:#f4f6f9;
}

/* ===== HEADER ===== */
.main-header{
    background:#0b2e4a;
    color:white;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar a{
    color:white;
    margin:0 10px;
    text-decoration:none;
    font-weight:bold;
}

.navbar a:hover{
    color:#00c2ff;
}

/* ===== HERO ===== */
.hero{
    height:400px;
background-size: cover;    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
}

.hero::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    z-index:2;
}

.animated-title{
    font-size:28px;
    animation:fadeIn 2s ease-in-out;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(-20px);}
    to{opacity:1; transform:translateY(0);}
}

.btn{
    display:inline-block;
    padding:10px 20px;
    background:#00c2ff;
    color:white;
    text-decoration:none;
    margin-top:10px;
    border-radius:5px;
}

/* ===== MAIN ===== */
.container{
    padding:30px;
    text-align:center;
}

.main-image{
    width:400px;
    border-radius:10px;
}

/* ===== FOOTER ===== */
.footer{
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:30px;
}

/* ===== SUCCESS ===== */
.success{
    color:green;
    font-weight:bold;
}

.login-box{
    width:300px;
    margin:100px auto;
    padding:20px;
    background:white;
    text-align:center;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.login-box input{
    width:90%;
    padding:10px;
    margin:10px 0;
}

.login-box button{
    padding:10px 20px;
    background:#0b2e4a;
    color:white;
    border:none;
    cursor:pointer;
}

.dashboard{
    padding:30px;
    text-align:center;
}

.dashboard ul{
    list-style:none;
    padding:0;
}

.dashboard li{
    background:#f2f2f2;
    margin:10px;
    padding:10px;
}

.banner-img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}
