* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F8FAFC;
}

body {
    direction: rtl;
    text-align: right;
    font-family: "Cairo", sans-serif !important;
}

button,
img {
    user-select: none;
}

img {
    background-color: transparent;
}


.reveal-section {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}
.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}