body {
    font-family: 'Tajawal', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.05);
    z-index: 0;
}


/* RTL specific form adjustments */
.input-group-text {
    border-radius: 0 8px 8px 0;
}

.form-check {
    padding-right: 1.5em;
    padding-left: 0;
}

.form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}

/* RTL specific table adjustments */
.table thead th {
    text-align: right;
}

/* RTL specific pagination adjustments */
.page-item:first-child .page-link {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* RTL specific dropdown adjustments */
.dropdown-menu {
    text-align: right;
}

/* RTL specific card adjustments */
.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* RTL specific alert adjustments */
.alert-dismissible {
    padding-right: 1rem;
    padding-left: 4rem;
}

.alert-dismissible .btn-close {
    left: 0;
    right: auto;
}