* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "TheYearofTheCamel";
    src: url("../../fonts/TheYearofTheCamel-Light.otf") format("truetype");
    font-weight: 300;
}


@font-face {
    font-family: "TheYearofTheCamel";
    src: url("../../fonts/TheYearofTheCamel-Regular.otf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "TheYearofTheCamel";
    src: url("../../fonts/TheYearofTheCamel-Medium.otf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "TheYearofTheCamel";
    src: url("../../fonts/TheYearofTheCamel-Bold.otf") format("truetype");
    font-weight: 700;
}



@font-face {
    font-family: "TheYearofTheCamel";
    src: url("../../fonts/TheYearofTheCamel-Extra-Bold.otf") format("truetype");
    font-weight: 900;
}

body {
    direction: rtl;

    font-family: "TheYearofTheCamel", sans-serif !important;
    font-weight: 400;

    background-color: #EDEDED;
}





.main-text-size{
    font-size: 72px;
}
@media (max-width: 768px) {
    .main-text-size {
        font-size: 38px;
    }
    
}
.hero-title {
    font-size: 72px;
    font-weight: bolder;
}
.hero-sub-title {
    font-size: 22px;
}
.section-header {
    font-size: 56px;
}
@media (max-width: 456px) {
    .hero-title {
        font-size: 40px;
    }
    .section-header {
        font-size: 40px;
    }
}
/* ------------------------------------------------------------ */
/* custom select */
.dropdown {
    position: relative;
    /* width: 250px; */
}

.select-box {
    background: var(--main-bg) !important;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.options-wrapper {
    background: var(--main-bg) 100% !important;
    margin-top: 6px;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    top: 0px;
    position: absolute;
    /* bottom: 0px; */
    z-index: 333;
}

.options-wrapper.active {
    display: flex;
}

#searchBox {
    padding: 10px;
    background: transparent;
    color: var(--main-color);
    border: none;
    outline: none;
}

#optionsList {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
}

#optionsList li {
    padding: 10px 16px;
    cursor: pointer;
}

#optionsList li:hover {
    background: var(--bg-heavy) !important;
    color: var(--second-color) !important;
}



/* ------------------------------------------------------------ */

/* navbar */

.navbar-nav {
    margin-left: auto;
}

.notif-dropdown-menu {
    left: 0 !important;
    right: auto !important;
    top: 70px !important;
}

/* modal of school system */
.modal-content {
    background-color: var(--main-bg) !important;
    border-radius: 30px !important;
}

/* --------------------------- */
/* progress */
.progress {
    height: 8px !important;
    background-color: var(--third-color-heavy) !important;
}

.progress-bar {
    background-color: var(--second-color) !important;
}

.pass-ratio {
    font-size: 14px;
}

/* ====================================== */
/* sign  */
.input-box input {
    padding-left: 45px;
}

/* Dropdown (General Styles) */
/* Dropdown (General Styles) */
li.dropdown {
    position: relative;
}

ul.dropdown-menu {
    position: absolute;
 border: none !important;
    min-width: 200px;
    text-align: center;
    background-color: var(--nav-bg) !important;
    border-radius: 15px;
}

ul.dropdown-menu li {
    display: block !important;
    white-space: nowrap;
}

.dropdown-menu li a {
    
    padding: 10px 10px;
    color: var(--text-base);
    width: 100%;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-heavy) !important;
    color: var(--second-color);
    cursor: pointer;
}

.dropdown-menu i {
    transform: rotate(-180deg);
}

/* Sub Dropdown */
ul.dropdown-menu ul.dropdown-menu {
    right: 102%;
    top: 0;
    background-color: var(--footer-bg) !important;
}

/* Services Dropdown (#service-dropdown) */
#service-dropdown .dropdown-menu {
    border: none !important;
}

#service-dropdown .sub {
    margin-bottom: 25px !important;
}

#service-dropdown .sub li {
    width: 100%;
}

#service-dropdown > ul {
    top: 159%;
}

#service-dropdown ul li a:hover {
    color: var(--second-color);
}

#service-dropdown > a {
    color: var(--text-base);
}

/* Language Dropdown (#lang-dropdown) */
#lang-dropdown .dropdown-menu {
    border: none !important;
    min-width: 120px; /* Smaller width for language options */
    text-align: center;
    background-color: var(--nav-bg) !important;
    border-radius: 15px;
    left: -13px;
}

#lang-dropdown .dropdown-menu a {
    font-size: 18px; /* Larger font for clarity */
    padding: 8px 15px;
}

#lang-dropdown .dropdown-menu a:hover {
    background-color: var(--bg-heavy) !important;
    color: var(--second-color);
}

#lang-dropdown > ul {
    top: 235%; /* Position directly below the link */
}

/* Icon Rotation */
.rotate-0 {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Drop Cover (Optional Overlay) */
.drop-cover {
    position: absolute;
    background-position: center;
    background-attachment: fixed;
    background-color: rgba(90, 90, 95, 0.4);
    transition: all 200ms linear;
}