* { box-sizing: border-box; margin: 0; padding: 0; font-family: Tahoma, Arial, sans-serif; } body { background: #f2f5fa; color: #333; direction: rtl; } header { background: white; padding: 18px 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 3px 15px rgba(0,0,0,0.08); position: sticky; top: 0; } .logo { font-size: 32px; font-weight: bold; color: #0A84FF; } nav a { text-decoration: none; color: #444; margin-right: 25px; font-size: 16px; } nav a:hover { color: #0A84FF; } .hero { background: linear-gradient(135deg,#0A84FF,#35C2FF); color: white; padding: 100px 20px; text-align: center; border-radius: 0 0 40px 40px; } .hero h1 { font-size: 65px; margin-bottom: 20px; } .hero p { font-size: 21px; margin: 15px auto; max-width: 700px; line-height: 2; } button { margin-top: 30px; background: white; color: #0A84FF; border: none; padding: 15px 40px; border-radius: 30px; font-size: 18px; cursor: pointer; } .about { background: white; max-width: 900px; margin: 50px auto; padding: 45px; border-radius: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); text-align: center; line-height: 2; } .about h1, .about h2 { color: #0A84FF; margin-bottom: 20px; } footer { background: #111827; color: white; text-align: center; padding: 25px; margin-top: 60px; } @media(max-width:700px){ header { padding: 15px 20px; flex-direction: column; } nav { margin-top: 15px; } .hero h1 { font-size: 45px; } } .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.categories {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}

.categories div {
    background: #f4f7fb;
    padding: 25px;
    border-radius: 15px;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

@media(max-width:700px){

.categories {
    grid-template-columns: repeat(2,1fr);
}

}
footer {
    background: #111827;
    color: white;
    padding: 40px 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.footer-content a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.footer-content a:hover {
    color: #35C2FF;
}

.enamad-box {
    background: white;
    color: #333;
    width: 130px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}


.copyright {
    text-align: center;
    margin-top: 30px;
}


@media(max-width:700px){

.footer-content {
    grid-template-columns: 1fr;
}

}