/* Importing Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

/* General body styles */
body {
    font-family: "Tajawal", sans-serif !important;
    background-color: #f0f6fa !important;
}

/* =====================Start Nav2================================= */
/* Navbar Styles */
.mutasem-navbar {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
}

/* Container Styling */
.mutasem-container {
    width: 100%;
    max-width: 1258px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Content Styling */
.mutasem-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.mutasem-logo img {
    max-width: 100px;
    height: auto;
}

/* Mobile Navbar Toggle Button */
.mutasem-navbar-toggler {
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Navbar Links */
.mutasem-navbar-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.mutasem-nav-list {
    display: flex;
    list-style: none;
}

/* Navbar Link Styling */
.mutasem-nav-link {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
}

.mutasem-nav-link.active {
    font-weight: 700;
    color: #762d51;
}

/* Dropdown Menu Styling */
.mutasem-menu-category {
    position: relative;
}

.mutasem-cat-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mutasem-category-item:hover .mutasem-cat-dropdown {
    display: block;
}

.mutasem-cat-dropdown li a {
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.mutasem-cat-dropdown li a:hover {
    background-color: #f1f1f1;
}

/* Button Design */
.mutasem-btn-login {
    padding: 10px 20px;
    text-decoration: none !important;
    border-radius: 5px;
    color: #fff !important;
    background-color: #284e69 !important;
    margin-left: 10px;
    box-shadow: 0 2px 4px rgba(76, 103, 123, 0.4);
}

.mutasem-btn-signup {
    padding: 10px 20px;
    text-decoration: none !important;
    border-radius: 5px;
    color: #fff !important;
    background-color: #762d51 !important;
    box-shadow: 0 2px 4px rgba(126, 80, 102, 0.4);
}

.mutasem-btn-login {
    background-color: #007bff;
}

.mutasem-btn-signup {
    background-color: #28a745;
}

/* Hover effect for buttons */
.mutasem-btn-login:hover,
.mutasem-btn-signup:hover {
    opacity: 0.8;
}

/* Mobile-Specific Styles */
@media (max-width: 1100px) {
    .mutasem-navbar-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
    }

    .mutasem-navbar-links.active {
        display: block;
        transform: translateX(0);
    }

    .mutasem-navbar-toggler {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: #333;
    }

    .mutasem-navbar-toggler i {
        color: #333;
    }

    .mutasem-navbar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #333;
    }

    .mutasem-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
    }

    .mutasem-nav-link {
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: 500;
        padding: 12px;
        display: block;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
        transition: background-color 0.3s ease;
    }

    .mutasem-nav-link:hover {
        background-color: #f1f1f1;
    }

    .mutasem-btn-signup {
        background-color: #762d51;
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 12px;
        margin-top: 10px;
        border-radius: 5px;
        display: block;
        width: 100%;
        text-decoration: none;
        margin-bottom: 10px;
    }

    .mutasem-btn-signup:hover {
        background-color: #6b3e51;
    }

    .mutasem-logo img {
        max-width: 120px;
        padding: 0px 15px;
    }

    .mutasem-navbar-content {
        display: flex;
        justify-content: space-between !important;
        align-items: center;
    }

    .mutasem-navbar-toggler:focus {
        outline: none;
    }
}

/* Hide Close Button on Desktop */
button.mutasem-navbar-close {
    display: none;
}

@media (max-width: 1100px) {
    button.mutasem-navbar-close {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #333;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

/* Hide Menu Icon on Desktop */
.mutasem-navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .mutasem-navbar-toggler {
        display: block;
    }
}

/* Hide Actions on Mobile */
@media (max-width: 1100px) {
    .mutasem-nav-actions {
        display: none;
    }

    .mutasem-nav-list li:last-child {
        margin-top: 20px;
    }

    .mutasem-nav-list li a.mutasem-btn-signup {
        background-color: #762d51;
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 12px;
        margin-top: 10px;
        border-radius: 5px;
        display: block;
        width: 100%;
        text-decoration: none;
        margin-bottom: 10px;
    }

    .mutasem-nav-list li a.mutasem-btn-signup:hover {
        background-color: #6b3e51;
    }

    .mutasem-nav-list li a {
        font-size: 18px;
        padding: 12px;
        text-align: center;
        display: block;
        text-decoration: none;
        color: #333;
    }

    .mutasem-nav-list li a:hover {
        background-color: #f1f1f1;
    }
}

/* =====================Start banner & Levels================================= */
.mutasem-main-t1 {
    text-align: center;
    color: #ffffff;
}

section.slider-container.hero-div.w-100.h-75 {
    height: 342px !important;
}

h1.mutasem-main-h1 {
    font-size: 64px;
    padding: 100px 20px 10px 20px;
    font-weight: 700;
}

p.mutasem-main-p {
    font-size: 40px;
    font-weight: 300;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    h1.mutasem-main-h1 {
        font-size: 36px;
        padding: 50px 20px 10px 20px;
        font-weight: 700;
    }

    p.mutasem-main-p {
        font-size: 20px;
        font-weight: 300;
        padding: 5px 5px 100px 5px;
    }

    .mutasem-main-t1 {
        text-align: center;
        color: #ffffff;
        padding-top: 20%;
    }
}

.mutasem-start-j {
    padding: 70px 20px 50px 20px;
    text-align: center;
}

h1.mutasem-start-h1 {
    font-size: 25px;
    font-weight: 700;
}

.cat-card {
    padding: 20px !important;
}

.cat-card h1 {
    font-size: 25px !important;
}

@media (max-width: 768px) {
    section.d-flex.justify-content-center.align-items-center.container-fluid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .cat-card {
        padding: 20px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .cat-card h1 {
        font-size: 23px !important;
    }
}

/* =====================Start Ads================================= */
.mutasem-slider-section {
    padding: 40px 0;
    text-align: center;
}

.mutasem-slider-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.mutasem-slide {
    display: none;
    transition: all 0.5s ease-in-out;
}

.mutasem-slide.active {
    display: block;
}

.mutasem-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.mutasem-left {
    width: 400px;
    height: 419px;
    flex-shrink: 0;
}

.mutasem-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mutasem-left img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.mutasem-right {
    width: 400px;
    height: 419px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.mutasem-right img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mutasem-right img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.mutasem-dots {
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 4px;
    border: thin solid #72a0c1;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #72a0c1;
}

.mutasem-btn {
    margin-top: 30px;
    width: 150px;
    height: 50px;
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid #284e69;
    border-radius: 6px;
    color: #284e69;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mutasem-btn:hover {
    background-color: #284e69;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

h1.mutasem-section-title {
    padding: 50px 10px 40px 10px;
}

@media (max-width: 768px) {
    .mutasem-grid {
        flex-direction: column-reverse;
        align-items: center;
    }

    .mutasem-left,
    .mutasem-right {
        width: 90%;
        height: auto;
    }

    .mutasem-left img,
    .mutasem-right img {
        width: 100%;
        height: auto;
    }

    .mutasem-right {
        gap: 15px;
    }

    .mutasem-btn {
        width: 80%;
        font-size: 18px;
        height: 50px;
    }

    h1.mutasem-section-title {
        font-size: 22px;
    }

    .mutasem-dots {
        margin-top: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* =====================Start Services================================= */
.mutasem-services-section {
    padding: 0px 20px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    max-width: 1258px;
    margin: auto;
}

.mutasem-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.mutasem-card:nth-child(1) {
    background-image: url("/assets/admin/img/card-bg.png");
}

.mutasem-card:nth-child(2) {
    background-image: url("/assets/admin/img/card-bg.png");
}

.mutasem-card:nth-child(3) {
    background-image: url("/assets/admin/img/card-bg.png");
}

.mutasem-card:nth-child(4) {
    background-image: url("/assets/admin/img/card-bg.png");
}

.mutasem-card:hover {
    background-color: #3a4854;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.mutasem-card .mutasem-icon {
    margin-bottom: 15px;
}

.mutasem-card img {
    width: 80px;
    height: 80px;
}

.mutasem-card {
    width: 23%;
    background-color: #4e5b6e;
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mutasem-card .mutasem-icon {
    margin-bottom: 15px;
}

.mutasem-card p {
    font-size: 18px;
    z-index: 1;
    position: relative;
    font-weight: 500;
    color: white;
}

.mutasem-card-link {
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .mutasem-card {
        width: 100%;
    }

    .mutasem-cards-container {
        justify-content: center;
    }
}

/* =====================Start Articles================================= */
.mutasem-news-section {
    padding: 60px 0;
    text-align: center;
}

.mutasem-news-slider {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.mutasem-news-slide {
    display: none;
}

.mutasem-news-slide.active {
    display: block;
}

.mutasem-news-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.mutasem-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mutasem-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.mutasem-news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.mutasem-news-content {
    padding: 20px;
    text-align: right;
}

.mutasem-news-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.mutasem-news-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.mutasem-news-dots {
    margin-top: 30px;
}

.news-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 4px;
    border: thin solid #72a0c1;
    border-radius: 50%;
    cursor: pointer;
}

.news-dot.active {
    background-color: #72a0c1;
}

/* =====================Start About================================= */
.mutasem-about-section {
    background-image: url("/assets/admin/img/about-bg.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.mutasem-about-container {
    width: 100%;
    max-width: 1258px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.mutasem-about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.mutasem-about-logo img {
    width: 250px;
    height: auto;
}

.mutasem-about-text {
    max-width: 500px;
    margin-left: 20px;
}

.mutasem-about-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
}

.mutasem-about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333333;
}

.mutasem-read-more-btn {
    background-color: #762d51;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mutasem-read-more-btn:hover {
    background-color: #284e69;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mutasem-about-section {
        padding: 60px 20px;
    }

    .mutasem-about-container {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }

    .mutasem-about-content {
        flex-direction: column;
        align-items: center;
    }

    .mutasem-about-logo img {
        width: 200px;
        padding: 30px;
    }

    .mutasem-about-text {
        max-width: 100%;
        margin-left: 0;
    }

    .mutasem-about-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mutasem-about-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .mutasem-read-more-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

.custom-quiz-card-container {
    border: 1px solid #ddd;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 297px;
    transition: transform 0.3s ease;
}

.custom-quiz-card-container:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-d-custom {
    background-color: #fff;
    border-radius: 20px;
}

.custom-d-card {
    background-color: #fff;
}

.custom-d-2 {
    background-color: #fff;
    margin-bottom: 40px;
}

.mutasem-quiz-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-top: 17px;
}

.mutasem-quiz-date i {
    margin-left: 5px;
    font-size: 16px;
}

.mutasem-quiz-time {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-top: 17px;
}

.mutasem-quiz-button {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background-color: #284e69;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mutasem-quiz-button:hover {
    background-color: #1f3d52;
    color: #fff;
}

.mutasem-quiz-time i {
    margin-left: 5px;
    font-size: 16px;
}

.custom-quiz-card-header-img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-quiz-card-body {
    padding: 15px;
}

/* =====================Start Status================================= */
.mutasem-stats-section {
    background-color: #762d51;
    padding: 20px 0;
    color: white;
    margin-top: 100px;
    margin-bottom: 100px;
    /* height: 210px !important; */
}

.mutasem-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    max-width: 1258px;
    width: 100%;
    margin: auto;
}

.mutasem-stat-bg {
    background-image: url("/assets/admin/img/layer_1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 20%;
    transform: translateX(-50%);
    width: 100px;
    height: 90px;
    z-index: 0;
    opacity: 0.5;
}

a.mutasem-select-card {
    max-width: 620px !important;
    width: 100%;
}

section.mutasem-select-container {
    max-width: 1258px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .mutasem-select-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mutasem-select-container a {
        width: 200px;
        text-align: center;
    }
}

.mutasem-stat {
    text-align: center;
}

.mutasem-stat-number {
    font-size: 33px;
    font-weight: bold;
    position: relative;
    width: 140px;
    /* padding-top: 40px;
    height: 120px; */
    background-size: cover;
    background-position: center;
    color: white;
}

.mutasem-stat-title {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 500;
}

.mutasem-stat-divider {
    height: 40px;
    border-left: 2px solid white;
    margin-right: 35px;
    margin-left: 35px;
}

@media (max-width: 768px) {
    .mutasem-stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .mutasem-stat-number {
        font-size: 24px;
        width: 80px;
        height: 90px;
    }

    .mutasem-stat-title {
        font-size: 14px;
        margin-top: 10px;
    }

    .mutasem-stat-divider {
        height: 20px;
        border-left: none;
    }
}

/* =====================Start App Promo================================= */
.mutasem-app-download-section {
    padding: 0px 20px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    max-width: 1258px;
    margin: auto;
}

.mutasem-app-download-section-main {
    background-color: #ffffff;
    padding: 60px 0;
    border-radius: 12px;
    margin: 100px auto;
}

.mutasem-app-download-container {
    max-width: 1000px;
    height: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mutasem-app-download-image {
    position: relative;
    width: 360px;
    height: 360px;
    background-color: #754f60;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.mutasem-app-download-image img {
    position: absolute;
    bottom: -60px;
    height: 460px;
    z-index: 2;
}

.mutasem-app-download-content {
    max-width: 460px;
    text-align: right;
}

.mutasem-app-download-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.mutasem-app-download-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.mutasem-app-download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mutasem-app-download-buttons img {
    height: 35px;
    transition: all 0.3s ease;
}

.mutasem-app-download-buttons a:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mutasem-app-download-section {
        margin: 40px auto;
        width: 95%;
    }

    .mutasem-app-download-container {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    .mutasem-app-download-image {
        width: 260px;
        height: 260px;
        margin: auto;
    }

    .mutasem-app-download-image img {
        height: 360px;
        bottom: -50px;
    }

    .mutasem-app-download-content {
        max-width: 100%;
        text-align: center;
    }

    .mutasem-app-download-content h2 {
        font-size: 24px;
    }

    .mutasem-app-download-content p {
        font-size: 15px;
    }

    .mutasem-app-download-buttons {
        justify-content: center;
    }

    .mutasem-app-download-buttons img {
        height: 32px;
    }

    .mutasem-footer-logo {
        text-align: center;
    }
}

/* =====================Start classes================================= */
.mutasem-filter-section {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 30px auto;
}

.mutasem-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.mutasem-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.mutasem-filter-item {
    flex: 1 1 22%;
    display: flex;
    flex-direction: column;
}

.mutasem-filter-item label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #2c3e50;
    text-align: right;
}

.mutasem-filter-item select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    appearance: none;
    direction: rtl;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23284E69' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 16px 16px;
}

.mutasem-grade-section {
    padding: 0px 20px 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 1258px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    box-sizing: border-box;
}

.mutasem-poinofsale-section {
    padding: 0px 20px 40px 20px;
    width: 100%;
    max-width: 1258px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.mutasem-select-gov {
    align-items: flex-start;
    padding-right: 30px;
}

@media (max-width: 992px) {
    .mutasem-grade-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .mutasem-grade-grid {
        grid-template-columns: 1fr !important;
    }

    .mutasem-course-card {
        width: 300px !important;
    }
}

.mutasem-grade-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.mutasem-grade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1258px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px 40px 20px;
    box-sizing: border-box;
    justify-items: center;
}

.mutasem-packages-grid-custom {
    max-width: 1258px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

.mutasem-packages-filter-custom {
    max-width: 1258px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 10px 20px;
}

.mutasem-grade-card {
    background-image: url(/assets/admin/img/gridbg.png);
    width: 297px;
    height: 210px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mutasem-grade-card:hover {
    cursor: pointer;
}

.mutasem-grade-card span {
    font-size: 66px !important;
    font-weight: 700;
}

.mutasem-grade-card p {
    font-size: 22px !important;
    font-weight: 700;
}

.course-card {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #ffffff;
    background-color: #284e69;
    width: 297px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 15px;
    cursor: pointer;
}

.course-card p {
    font-size: 20px;
    font-weight: 500;
}

.mutasem-grade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mutasem-grade-card span {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #762d51;
    margin-bottom: 8px;
}

.mutasem-grade-card p {
    margin: 0;
    font-size: 18px;
    color: #627074;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mutasem-filter-container,
    .mutasem-filter-form {
        flex-direction: column;
        gap: 16px;
    }

    .mutasem-filter-item {
        flex: 1 1 100%;
    }

    .mutasem-grade-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mutasem-grade-title {
        font-size: 20px;
    }

    .mutasem-grade-card {
        padding: 20px 16px;
        width: 340px;
    }

    .mutasem-grade-card span {
        font-size: 32px;
    }

    .mutasem-grade-card p {
        font-size: 16px;
    }

    .course-card {
        width: 320px;
    }

    .mutasem-term-button:first-of-type {
        border-radius: 16px;
    }

    .mutasem-term-button:last-of-type {
        border-radius: 16px;
    }
}
/* =====================Start Our Packages================================= */
.mutasem-banner-section {
    background-image: url(/assets/admin/img/packagebg.png);
    background-size: cover;
    background-color: #d7e5ef;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    direction: rtl;
}

.mutasem-banner-content h1 {
    font-size: 36px;
    color: #2e4756;
    margin: 0;
    font-weight: bold;
}

.mutasem-banner-content p {
    font-size: 23px;
    color: #762d51;
    margin-top: 10px;
}

.mutasem-filter-box {
    background-color: #f3f9ff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.mutasem-filter-inner {
    max-width: 1258px;
    background: #fff;
    width: 100%;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
}

.mutasem-filter-group {
    display: flex;
    flex-direction: column;
    font-family: "Tajawal", sans-serif;
    color: #2e4756;
    font-size: 14px;
    min-width: 220px;
}

.mutasem-filter-group label {
    margin-bottom: 8px;
    font-weight: bold;
}

.mutasem-select-wrapper {
    position: relative;
}

.mutasem-select-wrapper select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    appearance: none;
    font-family: "Tajawal", sans-serif;
}

.mutasem-select-arrow {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #9a4a57;
}

.mutasem-packages-section {
    padding: 50px 20px;
}

.mutasem-packages-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1258px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    justify-items: center;
}

.mutasem-package-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: "Tajawal", sans-serif;
    transition: all 0.3s ease;
    width: 297px;
}

.mutasem-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.mutasem-package-header {
    height: 220px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mutasem-package-body {
    text-align: center;
    padding: 20px;
}

.mutasem-package-body p {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: right;
}

.mutasem-price {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #762d51;
    margin-bottom: 15px;
    text-align: right;
}

.mutasem-package-btn {
    display: block;
    background-color: #284e69;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.menu-top-actions {
    display: flex;
}

.mutasem-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .mutasem-banner-section {
        padding: 60px 20px;
        background-position: top;
        text-align: center;
        justify-content: center;
    }

    .mutasem-banner-content h1 {
        font-size: 26px;
    }

    .mutasem-banner-content p {
        font-size: 18px;
    }

    .mutasem-filter-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        align-items: stretch;
    }

    .mutasem-filter-group {
        min-width: 100%;
    }

    .mutasem-packages-container {
        flex-direction: column !important;
        align-items: center;
        display: flex;
    }

    .mutasem-stats-section {
        height: auto !important;
        padding-bottom: 60px;
    }

    .mutasem-package-card {
        width: 90%;
    }

    .mutasem-package-body p,
    .mutasem-price {
        text-align: center;
    }
}

/* =====================Start Footer================================= */
.mutasem-footer {
    background-color: #284e69;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 50px 0 20px;
    text-align: right;
}

.mutasem-footer-container {
    max-width: 1258px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.mutasem-footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 30px;
}

.mutasem-footer-column {
    flex: 1 1 160px;
    font-family: "Tajawal";
}

p {
    font-family: "Tajawal" !important;
}

.logo-column {
    flex: 1 1 200px;
}

.mutasem-footer-logo img {
    height: 100px;
}

.mutasem-footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.mutasem-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mutasem-footer-list li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mutasem-footer-list li a:hover {
    text-decoration: none;
}

.mutasem-footer-list a {
    color: #fff;
    text-decoration: none;
}

.mutasem-footer-list a:hover {
    text-decoration: underline;
}

.mutasem-social-icons {
    display: flex;
    gap: 16px;
    font-size: 20px;
}

.mutasem-social-icons a {
    color: #fff;
}

.mutasem-footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 69%);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mutasem-footer-columns {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .mutasem-footer-column,
    .logo-column {
        flex: 1 1 100%;
        width: 100%;
    }

    .mutasem-footer-logo img {
        height: 70px;
    }

    .mutasem-footer-title {
        font-size: 15px;
        margin-bottom: 12px;
        text-align: center;
    }

    .mutasem-footer-list {
        text-align: center;
    }

    .mutasem-footer-list li {
        font-size: 13px;
    }

    .mutasem-social-icons {
        font-size: 18px;
        gap: 12px;
        justify-content: center;
    }

    .mutasem-footer-bottom {
        font-size: 13px;
        padding-top: 15px;
    }
}

/* =====================End Footer================================= */

/* top section */

/* Hide native radio input */
.hidden-radio {
    display: none;
}

/* Style the labels as buttons */
.mutasem-term-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #2d5371;
    border-radius: 8px;
    background-color: white;
    color: #2d5371;
    font-weight: bold;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Active (selected) button style */
.mutasem-term-button.mutasem-active {
    background-color: #2d5371;
    color: white;
}

/* Remove hover effect */
.mutasem-term-button:hover {
    background-color: white;
    color: #2d5371;
}

.modern-hero-section-packages {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/admin/img/packagebg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-container-packages {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
}

.hero-content-packages {
    animation: fadeInUp 0.8s ease;
    text-align: right;
}

.hero-title-packages {
    font-size: 4rem !important;
    font-weight: 700 !important;
    font-family: "Tajawal";
    line-height: 2.08rem;
    margin-bottom: 3rem;
}

.hero-subtitle-packages {
    font-size: 2rem !important;
    font-weight: 400 !important;
    font-family: "Tajawal";
    margin-bottom: 1.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* end of top bar */

@media (max-width: 768px) {
    .modern-hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.choices {
    font-family: "Tajawal", sans-serif !important;
    font-size: 15px;
}

.choices__list--dropdown .choices__item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.choices__list--dropdown {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
