﻿
/* =========================================================
   Authentication Pages
   Login / Register
   ========================================================= */
.auth-page {
    position: relative;
    min-height: 100vh;
    padding: 70px 0;
    overflow: hidden;
    direction: rtl;
}

.auth-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(52, 152, 219, 0.12), transparent 30%), radial-gradient(circle at 85% 80%, rgba(46, 204, 113, 0.10), transparent 30%);
    pointer-events: none;
}

.auth-card {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1100px;
    min-height: 680px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   Information Side
   ========================================================= */

.auth-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    padding: 55px 50px 35px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #1d3557 0%, #246b9e 55%, #2a9d8f 100%);
}

    .auth-info::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        top: -150px;
        right: -130px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
    }

    .auth-info::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        bottom: -140px;
        left: -120px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
    }

.auth-info-content {
    position: relative;
    z-index: 2;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    border-radius: 18px;
    color: #fff;
    font-size: 25px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.auth-overline {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    opacity: 0.82;
}

.auth-info h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 28px;
    line-height: 1.8;
    font-weight: 400;
}

    .auth-info h1 strong {
        font-weight: 800;
    }

.auth-info p {
    max-width: 400px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 2;
}

.auth-features {
    position: relative;
    z-index: 2;
    margin-top: 35px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.auth-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

.auth-info-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .auth-info-image img {
        display: block;
        width: 190px;
        max-width: 70%;
        margin: 0 auto;
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
    }


/* =========================================================
   Form Side
   ========================================================= */

.auth-form-container {
    width: 55%;
    padding: 55px 60px;
    background: #fff;
}

.auth-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.auth-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: #246b9e;
    font-size: 20px;
    background: #eef7fc;
}

.auth-form-header h2 {
    margin: 0 0 5px;
    color: #263238;
    font-size: 22px;
    font-weight: 800;
}

.auth-form-header p {
    margin: 0;
    color: #9299a2;
    font-size: 14px;
}


/* =========================================================
   Inputs
   ========================================================= */

.auth-input-group {
    margin-bottom: 20px;
}

    .auth-input-group label {
        display: block;
        margin-bottom: 8px;
        color: #424b57;
        font-size: 14px;
        font-weight: 700;
    }

.auth-input-wrapper {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #8d98a5;
    font-size: 15px;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    height: 48px;
    padding: 0 48px 0 15px;
    border: 1px solid #e4e8ed;
    border-radius: 12px;
    outline: none;
    color: #333;
    background: #fafbfc;
    font-size: 14px;
    transition: all 0.25s ease;
}

    .auth-input::placeholder {
        color: #aab1b9;
    }

    .auth-input:focus {
        border-color: #3694c5;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(54, 148, 197, 0.09);
    }

.auth-field-error {
    display: block;
    margin-top: 6px;
    color: #e74c3c;
    font-size: 11px;
}

.auth-validation-summary {
    margin-bottom: 15px;
    padding: 10px 13px;
    border-radius: 10px;
    background: #fff5f5;
    font-size: 11px;
}


/* =========================================================
   Captcha
   ========================================================= */

.auth-captcha {
    margin: 8px 0 22px;
    text-align: center;
}


/* =========================================================
   Submit Button
   ========================================================= */

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 13px;
    outline: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(36, 107, 158, 0.20);
    transition: all 0.25s ease;
}

    .auth-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(36, 107, 158, 0.27);
    }

    .auth-submit:active {
        transform: translateY(0);
    }


/* =========================================================
   Login Link
   ========================================================= */

.auth-switch {
    margin-top: 25px;
    text-align: center;
    color: #969da5;
    font-size: 11px;
}

    .auth-switch a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-right: 5px;
        color: #246b9e;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .auth-switch a:hover {
            color: #2a9d8f;
        }


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991px) {

    .auth-page {
        padding: 40px 15px;
    }

    .auth-card {
        max-width: 700px;
        display: block;
    }

    .auth-info {
        width: 100%;
        min-height: auto;
        padding: 40px 35px 30px;
    }

        .auth-info h1 {
            font-size: 24px;
        }

    .auth-info-image {
        display: none;
    }

    .auth-form-container {
        width: 100%;
        padding: 40px 35px;
    }
}


@media (max-width: 575px) {

    .auth-page {
        padding: 20px 10px;
    }

    .auth-card {
        border-radius: 20px;
    }

    .auth-info {
        padding: 30px 25px;
    }

    .auth-logo {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .auth-info h1 {
        font-size: 21px;
        line-height: 1.7;
    }

    .auth-info p {
        font-size: 14px;
    }

    .auth-features {
        margin-top: 25px;
    }

    .auth-feature {
        font-size: 11px;
    }

    .auth-form-container {
        padding: 30px 20px;
    }

    .auth-form-header {
        margin-bottom: 25px;
    }

        .auth-form-header h2 {
            font-size: 19px;
        }

    .auth-input {
        height: 46px;
    }

    .auth-input-icon {
        height: 46px;
    }

    .auth-submit {
        height: 48px;
    }
}


/* ========================================================= Login - Remember Me ========================================================= */ .auth-remember {
    margin: -3px 0 22px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

    .auth-checkbox input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.auth-checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #d8dee5;
    border-radius: 5px;
    background: #fafbfc;
    transition: all 0.2s ease;
}

    .auth-checkmark::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 6px;
        width: 4px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        opacity: 0;
        transform: rotate(45deg);
        transition: opacity 0.2s ease;
    }

.auth-checkbox input:checked + .auth-checkmark {
    border-color: #246b9e;
    background: #246b9e;
}

    .auth-checkbox input:checked + .auth-checkmark::after {
        opacity: 1;
    }

.auth-checkbox-text {
    color: #69727d;
    font-size: 11px;
}
/* ========================================================= Login - Register Link ========================================================= */

.auth-register-switch {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #edf0f3;
}
/* ========================================================= Login - Forgot Password ========================================================= */

.auth-forgot {
    margin-top: 18px;
    text-align: center;
}

    .auth-forgot a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #9ba2aa;
        font-size: 11px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .auth-forgot a i {
            font-size: 10px;
        }

        .auth-forgot a:hover {
            color: #246b9e;
        }
/* ========================================================= Login Responsive ========================================================= */

@media (max-width: 575px) {
    .auth-register-switch {
        margin-top: 20px;
        padding-top: 18px;
    }

    .auth-checkbox-text {
        font-size: 11px;
    }
}


/* =========================================================
   Notification Modal
   ========================================================= */
.notification-modal {
    z-index: 10000;
    direction: rtl;
}

.notification-modal-dialog {
    width: calc(100% - 30px);
    max-width: 560px;
    margin: 30px auto;
}

.notification-modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   Header
   ========================================================= */

.notification-modal-header {
    position: relative;
    padding: 38px 35px 32px;
    text-align: center;
    color: #fff;
    background: linear-gradient( 135deg, #246b9e 0%, #287db0 50%, #2a9d8f 100% );
}

    .notification-modal-header::before {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        top: -145px;
        right: -80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .notification-modal-header::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        bottom: -115px;
        left: -60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
    }


/* =========================================================
   Close
   ========================================================= */

.notification-modal-close {
    position: absolute;
    top: 17px;
    left: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.10);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    opacity: 1;
    transition: all 0.2s ease;
}

    .notification-modal-close:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.20);
        transform: rotate(90deg);
    }

    .notification-modal-close span {
        display: block;
        margin-top: -3px;
    }


/* =========================================================
   Icon
   ========================================================= */

.notification-modal-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    font-size: 38px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   Title & Description
   ========================================================= */

.notification-modal-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.7;
}

.notification-modal-description {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin: 8px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   Body
   ========================================================= */

.notification-modal-body {
    min-height: 80px;
    padding: 28px 30px;
    color: #4a535d;
    background: #fff;
    font-size: 13px;
    line-height: 2;
}


/* =========================================================
   Footer
   ========================================================= */

.notification-modal-footer {
    padding: 5px 30px 30px;
    text-align: center;
    background: #fff;
}

.notification-modal-button {
    min-width: 170px;
    height: 45px;
    padding: 0 30px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(36, 107, 158, 0.20);
    transition: all 0.25s ease;
}

    .notification-modal-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 13px 28px rgba(36, 107, 158, 0.27);
    }

    .notification-modal-button:active {
        transform: translateY(0);
    }


/* =========================================================
   Bootstrap Modal Backdrop
   ========================================================= */

.modal-backdrop.in {
    opacity: 0.65;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 575px) {

    .notification-modal-dialog {
        width: calc(100% - 20px);
        margin: 20px auto;
    }

    .notification-modal-content {
        border-radius: 20px;
    }

    .notification-modal-header {
        padding: 32px 22px 27px;
    }

    .notification-modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
        border-radius: 18px;
        font-size: 31px;
    }

    .notification-modal-title {
        font-size: 18px;
    }

    .notification-modal-description {
        font-size: 11px;
    }

    .notification-modal-body {
        padding: 22px 20px;
    }

    .notification-modal-footer {
        padding: 5px 20px 24px;
    }

    .notification-modal-button {
        width: 100%;
    }
}


/* =========================================================
   Circular / School Circulars
   ========================================================= */
.circular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   Notice
   ========================================================= */

.circular-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 17px 20px;
    border: 1px solid #e4ecf5;
    border-radius: 16px;
    background: linear-gradient( 135deg, #f7fbff, #eef7fc );
    direction: rtl;
}

.circular-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: #246b9e;
    background: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(36, 107, 158, 0.08);
}

.circular-notice-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #66717d;
    font-size: 14px;
    line-height: 1.9;
}

    .circular-notice-content strong {
        color: #263746;
        font-size: 13px;
    }

    .circular-notice-content b {
        color: #246b9e;
    }


/* =========================================================
   Circular Card
   ========================================================= */

.circular-item-custom {
    position: relative;
    padding: 24px;
    border: 1px solid #e9edf2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(28, 45, 64, 0.06);
    direction: rtl;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .circular-item-custom:hover {
        transform: translateY(-3px);
        border-color: #dbe7f0;
        box-shadow: 0 15px 40px rgba(28, 45, 64, 0.10);
    }


/* =========================================================
   Header
   ========================================================= */

.circular-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
}

.circular-item-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.circular-item-dot {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 50%;
    background: #246b9e;
    box-shadow: 0 0 0 5px rgba(36, 107, 158, 0.08);
}

.circular-item-title {
    margin: 0 0 7px;
    color: #263746;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
}

.circular-item-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9aa4ae;
    font-size: 10px;
}

    .circular-item-date i {
        color: #246b9e;
    }


.circular-item-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 7px 11px;
    border-radius: 9px;
    color: #246b9e;
    background: #f0f7fb;
    font-size: 10px;
    font-weight: 700;
}

    .circular-item-badge i {
        font-size: 11px;
    }


/* =========================================================
   Description
   ========================================================= */

.circular-item-description {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 17px;
    padding: 11px 13px;
    border-radius: 11px;
    color: #64748b;
    background: #f8fafc;
    font-size: 11px;
    line-height: 1.9;
}

    .circular-item-description i {
        margin-top: 4px;
        color: #2a9d8f;
    }


/* =========================================================
   Body
   ========================================================= */

.circular-item-body {
    overflow: hidden;
    border: 1px solid #edf0f3;
    border-radius: 15px;
    background: #fafbfc;
}

.circular-item-body-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-bottom: 1px solid #edf0f3;
    color: #596572;
    background: #f5f7f9;
    font-size: 11px;
    font-weight: 700;
}

    .circular-item-body-label i {
        color: #246b9e;
    }

.circular-item-text {
    padding: 18px;
    color: #3f4852;
    font-size: 13px;
    line-height: 2.1;
    overflow-wrap: anywhere;
}


/* =========================================================
   Footer
   ========================================================= */

.circular-item-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 18px;
}

.circular-read-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 19px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(36, 107, 158, 0.17);
    transition: all 0.25s ease;
}

    .circular-read-button i {
        font-size: 15px;
    }

    .circular-read-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(36, 107, 158, 0.24);
    }

    .circular-read-button:active {
        transform: translateY(0);
    }


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 575px) {

    .circular-notice {
        align-items: flex-start;
        padding: 14px;
    }

    .circular-notice-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .circular-notice-content {
        font-size: 11px;
    }

    .circular-item-custom {
        padding: 17px;
        border-radius: 17px;
    }

    .circular-item-header {
        align-items: flex-start;
    }

    .circular-item-badge {
        display: none;
    }

    .circular-item-title {
        font-size: 13px;
    }

    .circular-item-text {
        padding: 14px;
        font-size: 14px;
    }

    .circular-item-footer {
        display: block;
    }

    .circular-read-button {
        width: 100%;
    }
}


/* =========================================
   Notification
   ========================================= */

.notification-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #eef8f5, #f7fcfb);
    border: 1px solid #d7eee8;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 22px;
    direction: rtl;
}

.notification-notice-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a9d8f;
    color: #fff;
    border-radius: 15px;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.20);
}

.notification-notice-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .notification-notice-content strong {
        color: #246b9e;
        font-size: 16px;
        font-weight: 800;
    }

    .notification-notice-content span {
        color: #596b78;
        font-size: 14px;
        line-height: 1.9;
    }


/* Card */

.notification-card {
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 20px;
    padding: 24px;
    direction: rtl;
    box-shadow: 0 8px 28px rgba(36, 107, 158, 0.08);
    transition: all 0.25s ease;
}

    .notification-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(36, 107, 158, 0.12);
    }


/* Header */

.notification-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.notification-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-title-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: #246b9e;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 107, 158, 0.10);
}

.notification-title {
    margin: 0 0 6px 0;
    color: #246b9e;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
}

.notification-date {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7b8a97;
    font-size: 13px;
}

    .notification-date i {
        color: #2a9d8f;
        font-size: 14px;
    }

.notification-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #eef6fb;
    color: #246b9e;
    border-radius: 10px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

    .notification-badge i {
        font-size: 14px;
    }


/* Description */

.notification-description {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 18px 0;
    padding: 12px 15px;
    background: #faf9ff;
    border-radius: 12px;
    color: #6559a8;
    font-size: 15px;
    line-height: 1.9;
}

    .notification-description i {
        margin-top: 5px;
        color: #6c5ce7;
        font-size: 13px;
    }


/* Body */

.notification-body {
    background: #f8fafc;
    border: 1px solid #edf1f5;
    border-radius: 15px;
    padding: 18px;
}

.notification-body-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #246b9e;
    font-size: 15px;
    font-weight: 800;
}

    .notification-body-label i {
        color: #2a9d8f;
    }

.notification-text {
    color: #34495e;
    font-size: 15px;
    line-height: 2.1;
    word-break: break-word;
}


/* Expire */

.notification-expire {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 13px 15px;
    background: #fff8f1;
    border: 1px solid #f7e4cf;
    border-radius: 13px;
}

.notification-expire-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0df;
    color: #e67e22;
    border-radius: 10px;
    font-size: 16px;
}

.notification-expire-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-expire-label {
    color: #8a6d52;
    font-size: 13px;
}

.notification-expire-date {
    color: #d66d16;
    font-size: 14px;
    font-weight: 800;
}


/* Responsive */

@media (max-width: 767px) {

    .notification-notice {
        padding: 15px;
        gap: 12px;
    }

    .notification-notice-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 19px;
    }

    .notification-notice-content strong {
        font-size: 15px;
    }

    .notification-notice-content span {
        font-size: 14px;
    }

    .notification-card {
        padding: 18px;
        border-radius: 17px;
    }

    .notification-card-header {
        align-items: flex-start;
    }

    .notification-title {
        font-size: 16px;
    }

    .notification-badge {
        padding: 7px 9px;
        font-size: 12px;
    }

    .notification-description {
        font-size: 14px;
    }

    .notification-body {
        padding: 15px;
    }

    .notification-text {
        font-size: 14px;
        line-height: 2;
    }
}


@media (max-width: 575px) {

    .notification-notice {
        align-items: flex-start;
    }

    .notification-notice-icon {
        margin-top: 2px;
    }

    .notification-card-header {
        flex-direction: column;
    }

    .notification-badge {
        align-self: flex-start;
    }

    .notification-title {
        font-size: 16px;
    }

    .notification-date {
        font-size: 13px;
    }

    .notification-body-label {
        font-size: 14px;
    }

    .notification-text {
        font-size: 14px;
    }
}


/* =========================================
   Developers
   ========================================= */

.developers-page {
    width: 100%;
    padding: 60px 15px;
    direction: rtl;
}

.developers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}


/* Card */

.developer-column {
    min-width: 0;
}

.developer-card {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(36, 107, 158, 0.08);
    transition: all 0.3s ease;
}

    .developer-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(36, 107, 158, 0.15);
    }


/* Image */

.developer-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f3f7fa;
}

.developer-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.developer-card:hover .developer-image {
    transform: scale(1.06);
}


/* Overlay */

.developer-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background: linear-gradient( to top, rgba(15, 38, 55, 0.78), rgba(15, 38, 55, 0.05) 65%, transparent );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.developer-card:hover .developer-image-overlay {
    opacity: 1;
}

.developer-overlay-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}


/* Info */

.developer-info {
    padding: 18px 18px 20px;
    text-align: center;
}

.developer-name {
    color: #246b9e;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 14px;
}


/* Description */

.developer-description {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    min-height: 55px;
    color: #596b78;
    font-size: 14px;
    line-height: 1.9;
}

    .developer-description i {
        color: #2a9d8f;
        font-size: 12px;
        margin-top: 5px;
        flex-shrink: 0;
    }

    .developer-description span {
        flex: 1;
    }


/* Tablet */

@media (max-width: 991px) {

    .developers-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .developer-image-wrapper {
        height: 240px;
    }

    .developer-name {
        font-size: 17px;
    }
}


/* Small tablet */

@media (max-width: 767px) {

    .developers-page {
        padding: 40px 12px;
    }

    .developers-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .developer-image-wrapper {
        height: 230px;
    }

    .developer-info {
        padding: 16px 14px 18px;
    }

    .developer-name {
        font-size: 17px;
    }

    .developer-description {
        font-size: 14px;
    }
}


/* Mobile */

@media (max-width: 480px) {

    .developers-container {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .developer-image-wrapper {
        height: 300px;
    }

    .developer-name {
        font-size: 18px;
    }

    .developer-description {
        font-size: 15px;
    }
}
/* =========================================
   Notification Detail
   ========================================= */

.notification-detail-page {
    width: 100%;
    padding: 35px 15px 60px;
    direction: rtl;
    background: #f6f9fc;
}

.notification-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Breadcrumb */

.notification-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    color: #82909c;
    font-size: 14px;
}

    .notification-breadcrumb li {
        display: flex;
        align-items: center;
    }

    .notification-breadcrumb a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #607687;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .notification-breadcrumb a:hover {
            color: #246b9e;
        }

    .notification-breadcrumb i {
        color: #aab6bf;
        font-size: 12px;
    }

    .notification-breadcrumb .active {
        color: #246b9e;
        font-weight: 700;
    }


/* Header */

.notification-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    padding: 22px 25px;
    background: #fff;
    border: 1px solid #e7edf2;
    border-radius: 20px;
    box-shadow: 0 7px 25px rgba(36, 107, 158, 0.07);
}

.notification-detail-header-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(36, 107, 158, 0.18);
}

.notification-detail-overline {
    margin-bottom: 4px;
    color: #7c8c99;
    font-size: 13px;
}

.notification-detail-header h1 {
    margin: 0;
    color: #243b4a;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.7;
}


/* Grid */

.notification-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 25px;
    align-items: start;
}


/* Main Article */

.notification-article {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7edf2;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(36, 107, 158, 0.08);
}


/* Image */

.notification-article-image {
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #edf3f7;
}

    .notification-article-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }


/* Meta */

.notification-article-meta {
    padding: 18px 25px;
    border-bottom: 1px solid #edf1f4;
}

.notification-meta-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.notification-meta-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef7f5;
    color: #2a9d8f;
    border-radius: 11px;
    font-size: 16px;
}

.notification-meta-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-meta-label {
    color: #8997a2;
    font-size: 12px;
}

.notification-meta-item strong {
    color: #344b5a;
    font-size: 14px;
}


/* Article Content */

.notification-article-content {
    padding: 28px;
}

    .notification-article-content h2 {
        margin: 0 0 22px;
        padding-right: 14px;
        border-right: 4px solid #2a9d8f;
        color: #246b9e;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.7;
    }

.notification-article-text {
    color: #394c59;
    font-size: 16px;
    line-height: 2.15;
    word-break: break-word;
}

    .notification-article-text p {
        margin-bottom: 15px;
    }

    .notification-article-text img {
        max-width: 100%;
        height: auto;
    }


/* Sidebar */

.notification-detail-sidebar {
    position: sticky;
    top: 20px;
}

.notification-sidebar-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7edf2;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(36, 107, 158, 0.08);
}


/* Sidebar Header */

.notification-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f3f9fc, #f6fbfa);
    border-bottom: 1px solid #e7eef2;
}

.notification-sidebar-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #246b9e;
    color: #fff;
    border-radius: 13px;
    font-size: 18px;
}

.notification-sidebar-header > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-sidebar-header span {
    color: #82919d;
    font-size: 12px;
}

.notification-sidebar-header strong {
    color: #246b9e;
    font-size: 16px;
}


/* Short Link */

.notification-short-link {
    padding: 22px;
}

.notification-short-link-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #344b5a;
    font-size: 15px;
    font-weight: 800;
}

    .notification-short-link-title i {
        color: #2a9d8f;
    }


.notification-short-link-box {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    background: #f5f8fa;
    border: 1px solid #e2e9ee;
    border-radius: 12px;
}

.notification-short-link-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

    .notification-short-link-text a {
        display: block;
        overflow: hidden;
        color: #246b9e;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        direction: ltr;
        text-align: left;
    }

.notification-copy-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 10px;
    background: #246b9e;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
}

    .notification-copy-button:hover {
        background: #1d5a85;
        transform: translateY(-1px);
    }

.notification-copy-success {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #23967e;
    font-size: 13px;
    font-weight: 700;
}

    .notification-copy-success i {
        font-size: 14px;
    }


/* Responsive */

@media (max-width: 991px) {

    .notification-detail-grid {
        grid-template-columns: 1fr;
    }

    .notification-detail-sidebar {
        position: static;
    }

    .notification-article-image {
        height: 350px;
    }
}


@media (max-width: 767px) {

    .notification-detail-page {
        padding: 25px 12px 45px;
    }

    .notification-detail-header {
        padding: 18px;
        border-radius: 17px;
    }

    .notification-detail-header-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 19px;
    }

    .notification-detail-header h1 {
        font-size: 19px;
    }

    .notification-article-image {
        height: 280px;
    }

    .notification-article-content {
        padding: 22px 18px;
    }

        .notification-article-content h2 {
            font-size: 18px;
        }

    .notification-article-text {
        font-size: 15px;
        line-height: 2.1;
    }
}


@media (max-width: 575px) {

    .notification-breadcrumb {
        font-size: 13px;
        line-height: 1.8;
    }

    .notification-detail-header {
        align-items: flex-start;
    }

    .notification-detail-overline {
        font-size: 12px;
    }

    .notification-detail-header h1 {
        font-size: 17px;
    }

    .notification-article-image {
        height: 230px;
    }

    .notification-article-meta {
        padding: 15px 18px;
    }

    .notification-article-content {
        padding: 20px 16px;
    }

    .notification-article-text {
        font-size: 15px;
    }

    .notification-sidebar-header {
        padding: 17px;
    }

    .notification-short-link {
        padding: 18px;
    }
}

/* =========================================
   Notification Archive
   ========================================= */

.notification-archive-page {
    width: 100%;
    padding: 35px 15px 60px;
    direction: rtl;
}

.notification-archive-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Breadcrumb */

.notification-archive-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    color: #82909c;
    font-size: 14px;
}

    .notification-archive-breadcrumb li {
        display: flex;
        align-items: center;
    }

    .notification-archive-breadcrumb a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #607687;
        text-decoration: none;
    }

        .notification-archive-breadcrumb a:hover {
            color: #246b9e;
        }

    .notification-archive-breadcrumb i {
        color: #aab6bf;
        font-size: 12px;
    }

    .notification-archive-breadcrumb .active {
        color: #246b9e;
        font-weight: 700;
    }


/* Intro */

.notification-archive-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #eef8f7, #f6fbfc);
    border: 1px solid #dcefeb;
    border-radius: 20px;
}

.notification-archive-intro-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    color: #fff;
    border-radius: 16px;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(36, 107, 158, 0.18);
}

.notification-archive-intro-content h2 {
    margin: 0 0 6px;
    color: #246b9e;
    font-size: 19px;
    font-weight: 800;
}

.notification-archive-intro-content p {
    margin: 0 0 5px;
    color: #344b5a;
    font-size: 15px;
    font-weight: 800;
}

.notification-archive-intro-content span {
    display: block;
    color: #596b78;
    font-size: 14px;
    line-height: 2;
}


/* Filter */

.notification-archive-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5ebf0;
    border-radius: 18px;
    box-shadow: 0 7px 25px rgba(36, 107, 158, 0.06);
}

.notification-archive-filter-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-filter-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6fb;
    color: #246b9e;
    border-radius: 12px;
    font-size: 18px;
}

.notification-archive-filter-title > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.notification-archive-filter-title span {
    color: #84929d;
    font-size: 12px;
}

.notification-archive-filter-title strong {
    color: #344b5a;
    font-size: 15px;
}


/* Search */

.notification-search-wrapper {
    display: flex;
    align-items: center;
    width: 440px;
    max-width: 100%;
    height: 50px;
    padding: 5px;
    background: #f6f8fa;
    border: 1px solid #e1e8ed;
    border-radius: 13px;
    transition: all 0.2s ease;
}

    .notification-search-wrapper:focus-within {
        background: #fff;
        border-color: #8dbbd7;
        box-shadow: 0 0 0 4px rgba(36, 107, 158, 0.08);
    }

.notification-search-input {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #344b5a;
    font-size: 15px;
    font-family: inherit;
}

    .notification-search-input::placeholder {
        color: #9aa7b0;
    }

.notification-search-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 10px;
    background: #246b9e;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
}

    .notification-search-button:hover {
        background: #1d5a85;
        transform: translateY(-1px);
    }


/* Heading */

.notification-archive-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 20px;
    padding: 0 3px;
}

.notification-archive-heading-overline {
    display: block;
    margin-bottom: 4px;
    color: #8a98a3;
    font-size: 12px;
}

.notification-archive-heading h1 {
    margin: 0;
    color: #246b9e;
    font-size: 21px;
    font-weight: 800;
}

.notification-archive-heading-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef7f5;
    color: #2a9d8f;
    border-radius: 13px;
    font-size: 20px;
}


/* Notification List */

.notification-archive-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.notification-archive-item {
    min-width: 0;
}


/* Pagination */

.notification-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

    .notification-pagination li {
        display: flex;
    }

.notification-pagination-link {
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e0e7ec;
    border-radius: 10px;
    background: #fff;
    color: #607687;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .notification-pagination-link:hover {
        background: #eef6fb;
        border-color: #c8ddea;
        color: #246b9e;
        text-decoration: none;
    }

.notification-pagination li.active .notification-pagination-link {
    background: #246b9e;
    border-color: #246b9e;
    color: #fff;
    box-shadow: 0 5px 12px rgba(36, 107, 158, 0.2);
}


/* Tablet */

@media (max-width: 991px) {

    .notification-archive-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .notification-archive-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .notification-search-wrapper {
        width: 100%;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .notification-archive-page {
        padding: 25px 12px 45px;
    }

    .notification-archive-intro {
        padding: 18px;
        gap: 13px;
    }

    .notification-archive-intro-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 19px;
    }

    .notification-archive-intro-content h2 {
        font-size: 17px;
    }

    .notification-archive-intro-content p {
        font-size: 14px;
    }

    .notification-archive-intro-content span {
        font-size: 14px;
        line-height: 1.9;
    }

    .notification-archive-filter {
        padding: 16px;
    }

    .notification-archive-heading h1 {
        font-size: 18px;
    }

    .notification-archive-list {
        grid-template-columns: 1fr;
        gap: 17px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {

    .notification-archive-intro {
        align-items: flex-start;
    }

    .notification-archive-heading-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .notification-pagination-link {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* =========================================================
   Notification Main Card
   ========================================================= */

.notification-main-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, 0.08);
    transition: all 0.3s ease;
    direction: rtl;
}

    .notification-main-card:hover {
        transform: translateY(-7px);
        border-color: rgba(36, 107, 158, 0.18);
        box-shadow: 0 16px 40px rgba(31, 45, 61, 0.14);
    }


/* Image
--------------------------------------------------------- */

.notification-main-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.notification-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    background: #f3f6fa;
}

.notification-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.notification-main-card:hover .notification-main-image {
    transform: scale(1.06);
}

.notification-main-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(15, 35, 55, 0.02) 20%, rgba(15, 35, 55, 0.55) 100% );
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-main-card:hover .notification-main-image-overlay {
    opacity: 1;
}


/* View button
--------------------------------------------------------- */

.notification-main-view {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .notification-main-view span {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 12px 20px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        font-size: 15px;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .notification-main-view i {
        font-size: 16px;
    }

.notification-main-card:hover .notification-main-view {
    opacity: 1;
    visibility: visible;
}

    .notification-main-card:hover .notification-main-view span {
        transform: translateY(0);
    }


/* Badge
--------------------------------------------------------- */

.notification-main-type {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 10px;
    color: #fff;
    background: rgba(25, 71, 105, 0.82);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 700;
}

    .notification-main-type i {
        font-size: 14px;
    }


/* Body
--------------------------------------------------------- */

.notification-main-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 17px;
}

.notification-main-title {
    display: block;
    margin-bottom: 12px;
    color: #183b56 !important;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 800;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

    .notification-main-title:hover {
        color: #246b9e !important;
    }

.notification-main-description {
    margin: 0;
    color: #697586;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}


/* Footer
--------------------------------------------------------- */

.notification-main-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfe;
}


/* Dates
--------------------------------------------------------- */

.notification-main-dates {
    min-width: 0;
}

.notification-main-date {
    display: flex;
    align-items: center;
    gap: 9px;
}

.notification-main-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #246b9e;
    background: #eaf4fa;
}

    .notification-main-date-icon i {
        font-size: 15px;
    }

.notification-main-date-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    color: #697586;
    font-size: 13px;
    line-height: 1.8;
}

.notification-main-date-label {
    color: #7b8794;
    font-size: 13px;
    font-weight: 600;
}

.notification-main-date-value {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 7px;
    color: #246b9e;
    background: #eaf4fa;
    font-size: 13px;
    font-weight: 700;
}


/* More button
--------------------------------------------------------- */

.notification-main-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 9px 14px;
    border-radius: 10px;
    color: #fff !important;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 5px 14px rgba(36, 107, 158, 0.18);
    transition: all 0.25s ease;
}

    .notification-main-more:hover {
        color: #fff !important;
        transform: translateX(-3px);
        box-shadow: 0 8px 20px rgba(36, 107, 158, 0.25);
    }

    .notification-main-more i {
        font-size: 16px;
        transition: transform 0.25s ease;
    }

    .notification-main-more:hover i {
        transform: translateX(-3px);
    }


/* Responsive
--------------------------------------------------------- */

@media (max-width: 767px) {

    .notification-main-image-wrapper {
        height: 210px;
    }

    .notification-main-body {
        padding: 18px 17px 16px;
    }

    .notification-main-title {
        font-size: 17px;
    }

    .notification-main-description {
        font-size: 14px;
    }

    .notification-main-footer {
        padding: 13px 15px;
    }

    .notification-main-date-content {
        font-size: 12px;
    }

    .notification-main-date-label,
    .notification-main-date-value {
        font-size: 12px;
    }

    .notification-main-more {
        padding: 8px 12px;
        font-size: 13px;
    }
}


@media (max-width: 480px) {

    .notification-main-image-wrapper {
        height: 195px;
    }

    .notification-main-type {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .notification-main-title {
        font-size: 16px;
        line-height: 1.8;
    }

    .notification-main-description {
        font-size: 14px;
        line-height: 1.9;
    }

    .notification-main-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .notification-main-more {
        width: 100%;
    }

    .notification-main-view span {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* =========================================================
   Konkur Results
   ========================================================= */

.konkur-page {
    width: 100%;
    padding: 50px 20px 70px;
    direction: rtl;
}

.konkur-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* Header
--------------------------------------------------------- */

.konkur-page-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
    padding: 24px 28px;
    border: 1px solid #e9eff5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 45, 61, 0.07);
}

.konkur-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    box-shadow: 0 10px 24px rgba(36, 107, 158, 0.22);
}

    .konkur-header-icon i {
        font-size: 29px;
    }

.konkur-header-content {
    display: flex;
    flex-direction: column;
}

    .konkur-header-content > span {
        margin-bottom: 3px;
        color: #2a9d8f;
        font-size: 14px;
        font-weight: 700;
    }

    .konkur-header-content h1 {
        margin: 0 0 5px;
        color: #183b56;
        font-size: 25px;
        line-height: 1.5;
        font-weight: 800;
    }

    .konkur-header-content p {
        margin: 0;
        color: #7b8794;
        font-size: 15px;
        line-height: 1.8;
    }


/* Grid
--------------------------------------------------------- */

.konkur-students-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.konkur-student-column {
    min-width: 0;
}


/* Card
--------------------------------------------------------- */

.konkur-student-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e9eff5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 45, 61, 0.08);
    transition: all 0.3s ease;
}

    .konkur-student-card:hover {
        transform: translateY(-8px);
        border-color: rgba(42, 157, 143, 0.2);
        box-shadow: 0 18px 42px rgba(31, 45, 61, 0.14);
    }


/* Image
--------------------------------------------------------- */

.konkur-student-image-wrapper {
    position: relative;
    height: 255px;
    overflow: hidden;
    background: #f3f6fa;
}

.konkur-student-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.konkur-student-card:hover .konkur-student-image {
    transform: scale(1.06);
}

.konkur-student-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: linear-gradient( to bottom, rgba(15, 35, 55, 0.05), rgba(15, 35, 55, 0.72) );
    opacity: 0;
    transition: all 0.3s ease;
}

.konkur-student-card:hover .konkur-student-image-overlay {
    opacity: 1;
}

.konkur-student-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

    .konkur-student-success-icon i {
        font-size: 24px;
    }

.konkur-student-image-overlay > span {
    font-size: 15px;
    font-weight: 700;
}


/* Badge
--------------------------------------------------------- */

.konkur-student-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 10px;
    color: #fff;
    background: rgba(36, 107, 158, 0.88);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 700;
}

    .konkur-student-badge i {
        font-size: 14px;
    }


/* Student info
--------------------------------------------------------- */

.konkur-student-info {
    flex: 1;
    padding: 20px 19px 17px;
}

.konkur-student-name {
    margin: 0;
    color: #183b56;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 800;
    text-align: center;
}

.konkur-student-divider {
    width: 42px;
    height: 3px;
    margin: 13px auto 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, #246b9e, #2a9d8f);
}


/* University / Year
--------------------------------------------------------- */

.konkur-student-university,
.konkur-student-year {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 10px;
    border-radius: 12px;
    background: #f7fafc;
}

.konkur-student-year {
    margin-top: 9px;
}

.konkur-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: #246b9e;
    background: #eaf4fa;
}

    .konkur-info-icon i {
        font-size: 15px;
    }

.konkur-student-university > div,
.konkur-student-year > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.konkur-info-label {
    margin-bottom: 2px;
    color: #8a97a6;
    font-size: 12px;
    font-weight: 600;
}

.konkur-student-university strong,
.konkur-student-year strong {
    display: block;
    overflow: hidden;
    color: #30475e;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Footer
--------------------------------------------------------- */

.konkur-student-footer {
    padding: 12px 15px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfe;
    text-align: center;
}

    .konkur-student-footer span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #7b8794;
        font-size: 12px;
        font-weight: 600;
    }

    .konkur-student-footer i {
        color: #2a9d8f;
        font-size: 13px;
    }


/* Tablet
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .konkur-students-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* Tablet / Mobile
--------------------------------------------------------- */

@media (max-width: 800px) {

    .konkur-page {
        padding: 35px 15px 50px;
    }

    .konkur-students-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .konkur-page-header {
        padding: 20px;
    }

    .konkur-header-content h1 {
        font-size: 22px;
    }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 575px) {

    .konkur-page {
        padding: 25px 12px 40px;
    }

    .konkur-page-header {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 25px;
        padding: 17px;
        border-radius: 16px;
    }

    .konkur-header-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

        .konkur-header-icon i {
            font-size: 23px;
        }

    .konkur-header-content > span {
        font-size: 12px;
    }

    .konkur-header-content h1 {
        font-size: 19px;
    }

    .konkur-header-content p {
        font-size: 13px;
    }

    .konkur-students-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .konkur-student-image-wrapper {
        height: 260px;
    }

    .konkur-student-name {
        font-size: 18px;
    }

    .konkur-student-university strong,
    .konkur-student-year strong {
        font-size: 14px;
    }
}

/* =========================================================
   Download Software Page
   ========================================================= */

.download-page {
    width: 100%;
    padding: 40px 20px 70px;
    direction: rtl;
}

.download-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* Breadcrumb
--------------------------------------------------------- */

.download-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: #8995a3;
    font-size: 14px;
}

    .download-breadcrumb li {
        display: flex;
        align-items: center;
    }

    .download-breadcrumb a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #667789;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .download-breadcrumb a:hover {
            color: #246b9e;
        }

    .download-breadcrumb .active {
        color: #246b9e;
        font-weight: 700;
    }

    .download-breadcrumb > li > i {
        color: #aab4bf;
        font-size: 13px;
    }


/* Intro
--------------------------------------------------------- */

.download-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 28px;
    border: 1px solid #e8eef4;
    border-radius: 22px;
    background: linear-gradient( 135deg, #ffffff 0%, #f7fbfd 100% );
    box-shadow: 0 8px 30px rgba(31, 45, 61, 0.07);
}

.download-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    box-shadow: 0 10px 25px rgba(36, 107, 158, 0.22);
}

    .download-intro-icon i {
        font-size: 29px;
    }

.download-intro-content {
    min-width: 0;
}

    .download-intro-content > span {
        display: block;
        margin-bottom: 3px;
        color: #2a9d8f;
        font-size: 14px;
        font-weight: 700;
    }

    .download-intro-content h1 {
        margin: 0 0 7px;
        color: #183b56;
        font-size: 25px;
        line-height: 1.5;
        font-weight: 800;
    }

    .download-intro-content p {
        max-width: 950px;
        margin: 0;
        color: #687789;
        font-size: 15px;
        line-height: 2;
    }


/* Filter
--------------------------------------------------------- */

.download-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 32px;
    padding: 20px;
    border: 1px solid #e8eef4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(31, 45, 61, 0.06);
}

.download-filter-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.download-filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    color: #246b9e;
    background: #eaf4fa;
}

    .download-filter-icon i {
        font-size: 20px;
    }

.download-filter-title > div:last-child {
    display: flex;
    flex-direction: column;
}

.download-filter-title span {
    color: #7b8794;
    font-size: 13px;
    font-weight: 600;
}

.download-filter-title strong {
    margin-top: 2px;
    color: #30475e;
    font-size: 16px;
}


/* Search
--------------------------------------------------------- */

.download-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.download-search-input {
    width: 100%;
    height: 50px;
    padding: 0 18px 0 58px;
    border: 1px solid #dce5ed;
    border-radius: 13px;
    outline: none;
    color: #30475e;
    background: #f9fbfd;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.25s ease;
}

    .download-search-input::placeholder {
        color: #a0abb7;
    }

    .download-search-input:focus {
        border-color: #246b9e;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(36, 107, 158, 0.08);
    }

.download-search-button {
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    cursor: pointer;
    box-shadow: 0 5px 13px rgba(36, 107, 158, 0.18);
    transition: all 0.25s ease;
}

    .download-search-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(36, 107, 158, 0.25);
    }

    .download-search-button i {
        font-size: 16px;
    }


/* Heading
--------------------------------------------------------- */

.download-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.download-heading-overline {
    display: block;
    margin-bottom: 3px;
    color: #2a9d8f;
    font-size: 13px;
    font-weight: 700;
}

.download-heading h2 {
    margin: 0;
    color: #183b56;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 800;
}

.download-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    color: #246b9e;
    background: #eaf4fa;
}

    .download-heading-icon i {
        font-size: 22px;
    }


/* Download Items
--------------------------------------------------------- */

.download-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.download-item {
    min-width: 0;
}


/* Pagination
--------------------------------------------------------- */

.download-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

    .download-pagination li {
        display: flex;
    }

.download-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #e2e9ef;
    border-radius: 10px;
    color: #617286 !important;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

    .download-pagination-link:hover {
        border-color: #246b9e;
        color: #246b9e !important;
        background: #f4f9fc;
        transform: translateY(-2px);
    }

.download-pagination li.active .download-pagination-link {
    border-color: transparent;
    color: #fff !important;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    box-shadow: 0 6px 16px rgba(36, 107, 158, 0.2);
}

.download-pagination-link i {
    font-size: 15px;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .download-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .download-search-wrapper {
        max-width: none;
        width: 100%;
    }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .download-page {
        padding: 25px 13px 45px;
    }

    .download-intro {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 17px;
    }

    .download-intro-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

        .download-intro-icon i {
            font-size: 22px;
        }

    .download-intro-content > span {
        font-size: 12px;
    }

    .download-intro-content h1 {
        font-size: 20px;
    }

    .download-intro-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .download-filter {
        padding: 15px;
        border-radius: 15px;
    }

    .download-filter-title strong {
        font-size: 14px;
    }

    .download-search-input {
        height: 48px;
        font-size: 14px;
    }

    .download-heading h2 {
        font-size: 18px;
    }

    .download-heading-icon {
        width: 42px;
        height: 42px;
    }

    .download-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .download-pagination {
        gap: 5px;
    }

    .download-pagination-link {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* =========================================================
   Download Main Card
   ========================================================= */

.download-main-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e7eef4;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 45, 61, 0.08);
    direction: rtl;
    transition: all 0.3s ease;
}

    .download-main-card:hover {
        transform: translateY(-7px);
        border-color: rgba(36, 107, 158, 0.2);
        box-shadow: 0 18px 42px rgba(31, 45, 61, 0.14);
    }


/* Image
--------------------------------------------------------- */

.download-main-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    background: #f2f6f9;
}

.download-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.download-main-card:hover .download-main-image {
    transform: scale(1.06);
}

.download-main-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(16, 42, 61, 0.03) 20%, rgba(16, 42, 61, 0.68) 100% );
    transition: all 0.3s ease;
}


/* Image download button
--------------------------------------------------------- */

.download-main-image-button {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .download-main-image-button > i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(42, 157, 143, 0.92);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        font-size: 23px;
        transform: translateY(12px);
        transition: all 0.3s ease;
    }

    .download-main-image-button span {
        padding: 9px 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.13);
        backdrop-filter: blur(8px);
        font-size: 14px;
        font-weight: 700;
        transform: translateY(12px);
        transition: all 0.3s ease;
    }

.download-main-card:hover .download-main-image-button {
    opacity: 1;
    visibility: visible;
}

    .download-main-card:hover .download-main-image-button > i,
    .download-main-card:hover .download-main-image-button span {
        transform: translateY(0);
    }


/* Badge
--------------------------------------------------------- */

.download-main-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 10px;
    color: #fff;
    background: rgba(36, 107, 158, 0.88);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 700;
}

    .download-main-badge i {
        font-size: 14px;
    }


/* Body
--------------------------------------------------------- */

.download-main-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 18px;
}

.download-main-title {
    display: block;
    margin-bottom: 11px;
    color: #183b56 !important;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 800;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

    .download-main-title:hover {
        color: #246b9e !important;
    }

.download-main-description {
    display: -webkit-box;
    margin: 0 0 18px;
    overflow: hidden;
    color: #697889;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* Download button
--------------------------------------------------------- */

.download-main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 10px 16px;
    border-radius: 12px;
    color: #fff !important;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 7px 18px rgba(36, 107, 158, 0.18);
    transition: all 0.25s ease;
}

    .download-main-button:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 23px rgba(36, 107, 158, 0.27);
    }

    .download-main-button > i:first-child {
        font-size: 17px;
    }

.download-main-button-arrow {
    margin-right: auto;
    font-size: 17px !important;
    transition: transform 0.25s ease;
}

.download-main-button:hover .download-main-button-arrow {
    transform: translateX(-4px);
}


/* Footer
--------------------------------------------------------- */

.download-main-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 17px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfe;
}


/* Date
--------------------------------------------------------- */

.download-main-date {
    display: flex;
    align-items: center;
    gap: 9px;
}

.download-main-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: #246b9e;
    background: #eaf4fa;
}

    .download-main-date-icon i {
        font-size: 14px;
    }

.download-main-date > div {
    display: flex;
    flex-direction: column;
}

.download-main-date-label {
    color: #8995a3;
    font-size: 11px;
    font-weight: 600;
}

.download-main-date-value {
    margin-top: 1px;
    color: #486175;
    font-size: 13px;
    font-weight: 700;
}


/* Detail
--------------------------------------------------------- */

.download-main-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #246b9e !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

    .download-main-detail:hover {
        color: #2a9d8f !important;
    }

    .download-main-detail i {
        font-size: 15px;
        transition: transform 0.25s ease;
    }

    .download-main-detail:hover i {
        transform: translateX(-3px);
    }


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .download-main-image-wrapper {
        height: 220px;
    }

    .download-main-body {
        padding: 18px 17px 16px;
    }

    .download-main-title {
        font-size: 18px;
    }

    .download-main-description {
        font-size: 14px;
    }

    .download-main-button {
        font-size: 14px;
    }

    .download-main-footer {
        padding: 12px 15px;
    }
}

/* =========================================================
   Image Archive
   ========================================================= */

.image-archive-page {
    width: 100%;
    padding: 40px 20px 70px;
    direction: rtl;
}

.image-archive-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* Breadcrumb
--------------------------------------------------------- */

.image-archive-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: #8995a3;
    font-size: 14px;
}

    .image-archive-breadcrumb li {
        display: flex;
        align-items: center;
    }

    .image-archive-breadcrumb a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #667789;
        text-decoration: none;
        transition: color .2s ease;
    }

        .image-archive-breadcrumb a:hover {
            color: #246b9e;
        }

    .image-archive-breadcrumb .active {
        color: #246b9e;
        font-weight: 700;
    }

    .image-archive-breadcrumb > li > i {
        color: #aab4bf;
    }


/* Intro
--------------------------------------------------------- */

.image-archive-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 27px 30px;
    border: 1px solid #e5edf3;
    border-radius: 22px;
    background: linear-gradient( 135deg, #ffffff 0%, #f6fbfd 100% );
    box-shadow: 0 8px 30px rgba(31, 45, 61, .07);
}

.image-archive-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    box-shadow: 0 10px 25px rgba(36, 107, 158, .22);
}

    .image-archive-intro-icon i {
        font-size: 29px;
    }

.image-archive-intro-content > span {
    display: block;
    margin-bottom: 4px;
    color: #2a9d8f;
    font-size: 14px;
    font-weight: 700;
}

.image-archive-intro-content h1 {
    margin: 0 0 8px;
    color: #183b56;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 800;
}

.image-archive-intro-content p {
    max-width: 1050px;
    margin: 0;
    color: #687789;
    font-size: 15px;
    line-height: 2;
}


/* Gallery Heading
--------------------------------------------------------- */

.image-archive-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 0 5px;
}

.image-archive-heading-title > span {
    display: block;
    margin-bottom: 4px;
    color: #2a9d8f;
    font-size: 14px;
    font-weight: 700;
}

    .image-archive-heading-title > span i {
        margin-left: 5px;
    }

.image-archive-heading-title h2 {
    margin: 0;
    color: #183b56;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 800;
}

.image-archive-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #246b9e;
    background: #eaf4fa;
}

    .image-archive-heading-icon i {
        font-size: 23px;
    }


/* Gallery
--------------------------------------------------------- */

.image-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.image-archive-item {
    min-width: 0;
}


    /*
   اگر Partial قدیمی هنوز ArticleBody دارد،
   این قسمت باعث می‌شود کارت‌ها با صفحه جدید هماهنگ شوند.
*/

    .image-archive-item .ArticleBody {
        height: 100%;
        margin: 0;
        overflow: hidden;
        border: 1px solid #e6edf2;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 8px 28px rgba(31, 45, 61, .08);
        transition: all .3s ease;
    }

        .image-archive-item .ArticleBody:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(31, 45, 61, .14);
        }

    .image-archive-item img {
        transition: transform .5s ease;
    }

    .image-archive-item .ArticleBody:hover img {
        transform: scale(1.05);
    }


/* Pagination
--------------------------------------------------------- */

.image-archive-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

    .image-archive-pagination li {
        display: flex;
    }

.image-archive-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #e1e8ee;
    border-radius: 10px;
    color: #617286 !important;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .25s ease;
}

    .image-archive-pagination-link:hover {
        border-color: #246b9e;
        color: #246b9e !important;
        background: #f4f9fc;
        transform: translateY(-2px);
    }

.image-archive-pagination li.active
.image-archive-pagination-link {
    border-color: transparent;
    color: #fff !important;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    box-shadow: 0 6px 16px rgba(36, 107, 158, .2);
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .image-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .image-archive-page {
        padding: 25px 13px 45px;
    }

    .image-archive-intro {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 17px;
    }

    .image-archive-intro-icon {
        flex: 0 0 54px;
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }

        .image-archive-intro-icon i {
            font-size: 22px;
        }

    .image-archive-intro-content > span {
        font-size: 12px;
    }

    .image-archive-intro-content h1 {
        font-size: 20px;
    }

    .image-archive-intro-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .image-archive-heading-title h2 {
        font-size: 18px;
    }

    .image-archive-heading-icon {
        width: 43px;
        height: 43px;
    }

    .image-archive-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .image-archive-pagination {
        gap: 5px;
    }

    .image-archive-pagination-link {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* =========================================================
   School Image Gallery Card
   ========================================================= */

.school-gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e5edf3;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .08);
    direction: rtl;
    transition: all .3s ease;
}

    .school-gallery-card:hover {
        transform: translateY(-7px);
        border-color: rgba(36, 107, 158, .2);
        box-shadow: 0 18px 42px rgba(31, 45, 61, .15);
    }


/* Image
--------------------------------------------------------- */

.school-gallery-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #edf3f6;
}

.school-gallery-image-src {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.school-gallery-card:hover .school-gallery-image-src {
    transform: scale(1.08);
}


/* Overlay
--------------------------------------------------------- */

.school-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 54, 76, .58);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.school-gallery-card:hover .school-gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.school-gallery-overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    transform: translateY(12px);
    transition: transform .3s ease;
}

.school-gallery-card:hover .school-gallery-overlay-content {
    transform: translateY(0);
}

.school-gallery-view-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: rgba(42, 157, 143, .95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

    .school-gallery-view-icon i {
        font-size: 23px;
    }

.school-gallery-overlay-content > span {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(7px);
    font-size: 14px;
    font-weight: 700;
}

.school-gallery-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* Badge
--------------------------------------------------------- */

.school-gallery-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 10px;
    color: #fff;
    background: rgba(36, 107, 158, .9);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 700;
}

    .school-gallery-badge i {
        font-size: 14px;
    }


/* Body
--------------------------------------------------------- */

.school-gallery-body {
    padding: 18px 19px 16px;
}

.school-gallery-title {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
    color: #183b56 !important;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color .25s ease;
}

    .school-gallery-title:hover {
        color: #246b9e !important;
    }


/* Meta
--------------------------------------------------------- */

.school-gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid #edf1f4;
}

.school-gallery-date {
    display: flex;
    align-items: center;
    gap: 9px;
}

.school-gallery-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: #246b9e;
    background: #eaf4fa;
}

    .school-gallery-date-icon i {
        font-size: 14px;
    }

.school-gallery-date > div {
    display: flex;
    flex-direction: column;
}

.school-gallery-meta-label {
    color: #8995a3;
    font-size: 11px;
    font-weight: 600;
}

.school-gallery-meta-value {
    margin-top: 1px;
    color: #486175;
    font-size: 13px;
    font-weight: 700;
}


/* More button
--------------------------------------------------------- */

.school-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #246b9e !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .25s ease;
}

    .school-gallery-more:hover {
        color: #2a9d8f !important;
    }

    .school-gallery-more i {
        font-size: 16px;
        transition: transform .25s ease;
    }

    .school-gallery-more:hover i {
        transform: translateX(-4px);
    }


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .school-gallery-image {
        height: 230px;
    }

    .school-gallery-body {
        padding: 17px 16px 15px;
    }

    .school-gallery-title {
        font-size: 17px;
    }

    .school-gallery-more {
        font-size: 13px;
    }
}


/* =========================================================
   Image Detail Page
   ========================================================= */

.image-detail-page {
    width: 100%;
    padding: 40px 20px 70px;
    direction: rtl;
}

.image-detail-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* Breadcrumb
--------------------------------------------------------- */

.image-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    color: #8995a3;
    font-size: 14px;
}

    .image-detail-breadcrumb li {
        display: flex;
        align-items: center;
    }

    .image-detail-breadcrumb a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #667789;
        text-decoration: none;
        transition: color .2s ease;
    }

        .image-detail-breadcrumb a:hover {
            color: #246b9e;
        }

    .image-detail-breadcrumb .active {
        max-width: 300px;
        overflow: hidden;
        color: #246b9e;
        font-weight: 700;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .image-detail-breadcrumb > li > i {
        color: #aab4bf;
    }


/* Header
--------------------------------------------------------- */

.image-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 22px 25px;
    border: 1px solid #e6edf3;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(31, 45, 61, .06);
}

.image-detail-overline {
    display: block;
    margin-bottom: 5px;
    color: #2a9d8f;
    font-size: 14px;
    font-weight: 700;
}

    .image-detail-overline i {
        margin-left: 5px;
    }

.image-detail-header h1 {
    margin: 0;
    color: #183b56;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 800;
}

.image-detail-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    color: #246b9e;
    background: #eaf4fa;
}

    .image-detail-header-icon i {
        font-size: 25px;
    }


/* Layout
--------------------------------------------------------- */

.image-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 25px;
    align-items: start;
}


/* Main
--------------------------------------------------------- */

.image-detail-main {
    overflow: hidden;
    border: 1px solid #e4ebf0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 9px 30px rgba(31, 45, 61, .08);
}


/* Image
--------------------------------------------------------- */

.image-detail-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    overflow: hidden;
    background: #eef3f6;
}

.image-detail-image {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    transition: transform .5s ease;
}

.image-detail-main:hover .image-detail-image {
    transform: scale(1.015);
}

.image-detail-image-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 11px;
    color: #fff;
    background: rgba(36, 107, 158, .9);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
}

    .image-detail-image-badge i {
        font-size: 14px;
    }


/* Content
--------------------------------------------------------- */

.image-detail-content {
    padding: 25px 28px 30px;
}

.image-detail-content-title {
    padding-bottom: 16px;
    border-bottom: 1px solid #edf1f4;
}

    .image-detail-content-title span {
        display: block;
        margin-bottom: 5px;
        color: #2a9d8f;
        font-size: 13px;
        font-weight: 700;
    }

        .image-detail-content-title span i {
            margin-left: 5px;
        }

    .image-detail-content-title h2 {
        margin: 0;
        color: #183b56;
        font-size: 21px;
        line-height: 1.7;
        font-weight: 800;
    }

.image-detail-description {
    margin: 18px 0 0;
    color: #667789;
    font-size: 15px;
    line-height: 2.1;
}


/* Sidebar
--------------------------------------------------------- */

.image-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image-detail-info-card {
    padding: 20px;
    border: 1px solid #e5edf3;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(31, 45, 61, .07);
}


/* Sidebar Header
--------------------------------------------------------- */

.image-detail-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 17px;
    border-bottom: 1px solid #edf1f4;
}

.image-detail-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: #246b9e;
    background: #eaf4fa;
}

    .image-detail-info-icon i {
        font-size: 19px;
    }

.image-detail-info-header > div:last-child {
    display: flex;
    flex-direction: column;
}

.image-detail-info-header span {
    color: #8995a3;
    font-size: 12px;
}

.image-detail-info-header strong {
    margin-top: 2px;
    color: #30475e;
    font-size: 17px;
}


/* Info Items
--------------------------------------------------------- */

.image-detail-info-list {
    padding-top: 5px;
}

.image-detail-info-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f3f5;
}

    .image-detail-info-item:last-child {
        border-bottom: 0;
    }

.image-detail-info-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    color: #2a9d8f;
    background: #eef9f7;
}

    .image-detail-info-item-icon i {
        font-size: 14px;
    }

.image-detail-info-item > div:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.image-detail-info-item span {
    color: #8995a3;
    font-size: 11px;
    font-weight: 600;
}

.image-detail-info-item strong {
    margin-top: 2px;
    overflow: hidden;
    color: #40586c;
    font-size: 14px;
    line-height: 1.7;
    text-overflow: ellipsis;
}


/* Back Button
--------------------------------------------------------- */

.image-detail-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 10px 15px;
    border-radius: 13px;
    color: #246b9e !important;
    background: #fff;
    border: 1px solid #dfe8ee;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .25s ease;
}

    .image-detail-back-button:hover {
        color: #fff !important;
        border-color: #246b9e;
        background: linear-gradient( 135deg, #246b9e, #2a9d8f );
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(36, 107, 158, .18);
    }


/* Tablet
--------------------------------------------------------- */

@media (max-width: 900px) {

    .image-detail-layout {
        grid-template-columns: 1fr;
    }

    .image-detail-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .image-detail-page {
        padding: 25px 13px 45px;
    }

    .image-detail-header {
        padding: 17px;
        border-radius: 16px;
    }

        .image-detail-header h1 {
            font-size: 20px;
        }

    .image-detail-header-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

        .image-detail-header-icon i {
            font-size: 20px;
        }

    .image-detail-layout {
        gap: 17px;
    }

    .image-detail-image-wrapper {
        min-height: 280px;
    }

    .image-detail-content {
        padding: 20px 18px 23px;
    }

    .image-detail-content-title h2 {
        font-size: 18px;
    }

    .image-detail-description {
        font-size: 14px;
    }

    .image-detail-sidebar {
        display: flex;
    }

    .image-detail-info-card {
        padding: 17px;
    }
}


/* =========================================================
   Error / 404 Page
   ========================================================= */

.error-page {
    width: 100%;
    min-height: 70vh;
    padding: 60px 20px 80px;
    direction: rtl;
    display: flex;
    align-items: center;
}

.error-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.error-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 35px;
    overflow: hidden;
    padding: 35px;
    border: 1px solid #e5edf3;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(31, 45, 61, .09);
}


/* Image
--------------------------------------------------------- */

.error-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 15px;
    border-radius: 22px;
    background: #f7fafc;
}

    .error-image img {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        transition: transform .35s ease;
    }

.error-card:hover .error-image img {
    transform: scale(1.025);
}


/* Content
--------------------------------------------------------- */

.error-content {
    padding: 20px 15px;
    text-align: right;
}

.error-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    color: #246b9e;
    background: #eaf4fa;
    font-size: 14px;
    font-weight: 800;
}

    .error-badge i {
        font-size: 14px;
    }

.error-content h1 {
    margin: 20px 0 12px;
    color: #183b56;
    font-size: 30px;
    line-height: 1.6;
    font-weight: 900;
}

.error-content p {
    max-width: 500px;
    margin: 0;
    color: #5f7180;
    font-size: 16px;
    line-height: 2.1;
}

.error-divider {
    width: 70px;
    height: 4px;
    margin: 22px 0 17px;
    border-radius: 10px;
    background: linear-gradient( 90deg, #246b9e, #2a9d8f );
}

.error-help {
    display: block;
    margin-bottom: 25px;
    color: #8995a3;
    font-size: 13px;
    line-height: 1.9;
}


/* Home Button
--------------------------------------------------------- */

.error-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 11px 25px;
    border-radius: 13px;
    color: #fff !important;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(36, 107, 158, .18);
    transition: all .25s ease;
}

    .error-home-button:hover {
        color: #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 13px 28px rgba(36, 107, 158, .25);
    }

    .error-home-button i {
        font-size: 16px;
    }


/* Tablet
--------------------------------------------------------- */

@media (max-width: 800px) {

    .error-page {
        padding: 40px 18px 60px;
    }

    .error-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px;
    }

    .error-image {
        min-height: 280px;
    }

    .error-content {
        padding: 15px 10px 20px;
        text-align: center;
    }

        .error-content p {
            margin: 0 auto;
        }

    .error-divider {
        margin: 20px auto 15px;
    }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 500px) {

    .error-page {
        padding: 25px 12px 45px;
    }

    .error-card {
        padding: 15px;
        border-radius: 20px;
    }

    .error-image {
        min-height: 220px;
        border-radius: 16px;
    }

    .error-content {
        padding: 12px 5px 18px;
    }

        .error-content h1 {
            font-size: 23px;
        }

        .error-content p {
            font-size: 14px;
            line-height: 2;
        }

    .error-help {
        font-size: 12px;
    }

    .error-home-button {
        width: 100%;
    }
}


/* =========================================================
   SCHOOL FOOTER
   ========================================================= */

.school-footer {
    position: relative;
    width: 100%;
    direction: rtl;
    color: #dce7ee;
    background: #102b3c;
}


/* Container
--------------------------------------------------------- */

.school-footer-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   INTRO
   ========================================================= */

.school-footer-intro {
    position: relative;
    overflow: hidden;
    padding: 55px 0 45px;
    background: radial-gradient( circle at 85% 20%, rgba(42, 157, 143, .16), transparent 30% ), radial-gradient( circle at 10% 80%, rgba(36, 107, 158, .18), transparent 32% ), #102b3c;
}

    .school-footer-intro:before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        left: -120px;
        top: -130px;
        border: 1px solid rgba(255,255,255,.05);
        border-radius: 50%;
    }

.school-footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.school-footer-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

    .school-footer-brand-icon i {
        font-size: 26px;
    }

.school-footer-brand-label {
    display: block;
    margin-bottom: 3px;
    color: #8fa9b8;
    font-size: 12px;
}

.school-footer-brand h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.school-footer-intro-text {
    max-width: 850px;
    margin: 0;
    color: #c5d4dd;
    font-size: 15px;
    line-height: 2.2;
}

.school-footer-divider {
    width: 75px;
    height: 4px;
    margin: 24px 0 18px;
    border-radius: 20px;
    background: linear-gradient( 90deg, #2a9d8f, #246b9e );
}

.school-footer-mission {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

    .school-footer-mission i {
        margin: 0 7px;
        color: #2a9d8f;
    }


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.school-footer-main {
    padding: 55px 0 60px;
    background: #0c2433;
}

.school-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr 1fr;
    gap: 45px;
}

.school-footer-column {
    min-width: 0;
}


/* Titles
--------------------------------------------------------- */

.school-footer-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 23px;
}

.school-footer-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 11px;
    color: #70c9bd;
    background: rgba(42, 157, 143, .13);
}

    .school-footer-title-icon i {
        font-size: 15px;
    }

.school-footer-title h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}


/* Links
--------------------------------------------------------- */

.school-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .school-footer-links li {
        margin-bottom: 5px;
    }

    .school-footer-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 7px 0;
        color: #9fb2bf !important;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all .25s ease;
    }

        .school-footer-links a i {
            color: #2a9d8f;
            font-size: 11px;
            transition: transform .25s ease;
        }

        .school-footer-links a:hover {
            padding-right: 6px;
            color: #fff !important;
        }

            .school-footer-links a:hover i {
                transform: translateX(-4px);
            }


/* =========================================================
   SUPPORT
   ========================================================= */

.school-footer-support-text {
    margin: 0 0 17px;
    color: #9fb2bf;
    font-size: 13px;
    line-height: 2;
}

.school-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.school-footer-contact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 57px;
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 12px;
    color: #fff !important;
    background: rgba(255,255,255,.025);
    text-decoration: none !important;
    transition: all .25s ease;
}

    .school-footer-contact:hover {
        border-color: rgba(42,157,143,.3);
        background: rgba(42,157,143,.08);
        transform: translateX(-4px);
    }

.school-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 9px;
    color: #70c9bd;
    background: rgba(42,157,143,.1);
}

.school-footer-contact > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
}

.school-footer-contact small {
    margin-bottom: 2px;
    color: #728b99;
    font-size: 10px;
}

.school-footer-contact .arrow {
    margin-right: auto;
    color: #607986;
}


/* =========================================================
   ABOUT
   ========================================================= */

.school-footer-about-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.school-footer-about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    color: #70c9bd;
    background: rgba(42,157,143,.1);
}

.school-footer-about-card p {
    margin: 0;
    color: #9fb2bf;
    font-size: 13px;
    line-height: 2;
}

.school-footer-email {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    color: #9fb2bf;
    font-size: 13px;
}

    .school-footer-email i {
        color: #2a9d8f;
    }


/* =========================================================
   BOTTOM
   ========================================================= */

.school-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    background: #081c29;
}

.school-footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 105px;
    padding: 20px 0;
}

.school-footer-copyright {
    max-width: 800px;
}

    .school-footer-copyright p {
        margin: 0 0 8px;
        color: #718997;
        font-size: 11px;
        line-height: 1.9;
    }

    .school-footer-copyright strong {
        color: #a9bdc8;
    }

    .school-footer-copyright > a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #72bdb3 !important;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none !important;
        transition: color .2s ease;
    }

        .school-footer-copyright > a:hover {
            color: #fff !important;
        }

        .school-footer-copyright > a i {
            font-size: 12px;
        }


/* Social
--------------------------------------------------------- */

.school-footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .school-footer-social > span {
        color: #718997;
        font-size: 12px;
        white-space: nowrap;
    }

.school-footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .school-footer-social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 12px;
        background: rgba(255,255,255,.035);
        transition: all .25s ease;
    }

        .school-footer-social-links a:hover {
            border-color: rgba(42,157,143,.35);
            background: rgba(42,157,143,.1);
            transform: translateY(-4px);
        }

    .school-footer-social-links img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .school-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .school-footer-container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .school-footer-intro {
        padding: 40px 0 35px;
    }

    .school-footer-brand h2 {
        font-size: 20px;
    }

    .school-footer-intro-text {
        font-size: 14px;
    }

    .school-footer-mission {
        font-size: 13px;
        line-height: 2;
    }

    .school-footer-main {
        padding: 40px 0;
    }

    .school-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .school-footer-title {
        margin-bottom: 17px;
    }

    .school-footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding: 25px 0;
    }

    .school-footer-social {
        flex-direction: column;
        gap: 10px;
    }

    .school-footer-copyright > a {
        justify-content: center;
        line-height: 1.9;
    }
}

/*************************************************/









/* =========================================================
   SCHOOL LANDING PAGE
   ========================================================= */

.school-landing {
    direction: rtl;
    position: relative;
    overflow: hidden;
    background: #f7f9fc;
    color: #172033;
}


/* =========================================================
   HERO
   ========================================================= */

.school-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: radial-gradient(circle at 78% 35%, rgba(52, 152, 219, .14), transparent 30%), radial-gradient(circle at 10% 80%, rgba(46, 204, 113, .08), transparent 28%), linear-gradient(135deg, #f9fbff 0%, #eef5ff 52%, #f8fbff 100%);
}

.school-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1320px;
    min-height: 700px;
    margin: 0 auto;
    padding: 90px 30px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.school-hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
}

.school-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(36, 107, 158, .12);
    border-radius: 100px;
    background: rgba(255, 255, 255, .78);
    color: #246b9e;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(36, 107, 158, .07);
    backdrop-filter: blur(10px);
}

.school-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a9d8f;
    box-shadow: 0 0 0 5px rgba(42, 157, 143, .12);
}

.school-hero-badge i {
    font-size: 16px;
}

.school-hero-title {
    margin: 0;
    color: #152238;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -2px;
}

    .school-hero-title span {
        display: inline-block;
        background: linear-gradient(135deg, #246b9e, #2a9d8f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.school-hero-description {
    max-width: 600px;
    margin: 24px 0 30px;
    color: #667085;
    font-size: 17px;
    line-height: 2.15;
    font-weight: 500;
}

.school-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.school-hero-btn {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    transition: all .3s ease;
}

.school-hero-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    box-shadow: 0 15px 30px rgba(36, 107, 158, .22);
}

    .school-hero-btn-primary:hover {
        color: #fff !important;
        transform: translateY(-4px);
        box-shadow: 0 20px 38px rgba(36, 107, 158, .28);
    }

.school-hero-btn-secondary {
    color: #344054 !important;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e4eaf2;
    box-shadow: 0 10px 25px rgba(16, 24, 40, .05);
}

    .school-hero-btn-secondary:hover {
        color: #246b9e !important;
        transform: translateY(-4px);
        border-color: rgba(36, 107, 158, .25);
    }

.school-hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 42px;
}

.school-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.school-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #246b9e;
    background: #e8f3fb;
}

.school-trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #344054;
    font-size: 13px;
}

.school-trust-item span {
    display: block;
    color: #98a2b3;
    font-size: 11px;
}

.school-trust-line {
    width: 1px;
    height: 38px;
    background: #dfe6ef;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.school-hero-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-visual-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(52, 152, 219, .13);
    filter: blur(5px);
}

.school-visual-orbit {
    position: absolute;
    border: 1px dashed rgba(36, 107, 158, .16);
    border-radius: 50%;
}

.school-orbit-one {
    width: 570px;
    height: 570px;
    animation: schoolOrbit 20s linear infinite;
}

.school-orbit-two {
    width: 450px;
    height: 450px;
    animation: schoolOrbitReverse 15s linear infinite;
}

.school-hero-image-card {
    position: relative;
    z-index: 3;
    width: min(520px, 90%);
    padding: 9px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 35px 90px rgba(37, 75, 115, .16), 0 10px 30px rgba(37, 75, 115, .08);
    backdrop-filter: blur(15px);
    animation: schoolImageFloat 5s ease-in-out infinite;
}

.school-image-topbar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
}

    .school-image-topbar span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d9e2ec;
    }

.school-hero-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
}

.school-floating-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 18px 45px rgba(16, 24, 40, .12);
    backdrop-filter: blur(12px);
}

.school-floating-card-top {
    top: 105px;
    right: 5px;
    animation: schoolCardFloat 4s ease-in-out infinite;
}

.school-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #246b9e, #2a9d8f);
    font-size: 18px;
}

.school-floating-card strong {
    display: block;
    color: #344054;
    font-size: 13px;
}

.school-floating-card span {
    display: block;
    margin-top: 3px;
    color: #98a2b3;
    font-size: 11px;
}

.school-users-card {
    position: absolute;
    z-index: 7;
    left: 5px;
    bottom: 85px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 15px 17px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(16, 24, 40, .13);
    animation: schoolCardFloatReverse 5s ease-in-out infinite;
}

.school-users-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #8576ee, #246b9e);
    font-size: 19px;
}

.school-users-content > span {
    display: block;
    color: #98a2b3;
    font-size: 11px;
    margin-bottom: 2px;
}

.school-users-number {
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: #172033;
}

    .school-users-number span {
        font-size: 25px;
        font-weight: 900;
    }

    .school-users-number b {
        color: #2a9d8f;
        font-size: 17px;
    }

.school-floating-dot {
    position: absolute;
    z-index: 4;
    border-radius: 50%;
}

.school-dot-one {
    width: 15px;
    height: 15px;
    top: 90px;
    left: 80px;
    background: #f8c52f;
    box-shadow: 0 0 0 8px rgba(248, 197, 47, .12);
}

.school-dot-two {
    width: 11px;
    height: 11px;
    right: 60px;
    bottom: 150px;
    background: #e377d0;
    box-shadow: 0 0 0 7px rgba(227, 119, 208, .12);
}

.school-dot-three {
    width: 9px;
    height: 9px;
    left: 120px;
    bottom: 100px;
    background: #2a9d8f;
}


/* =========================================================
   HERO BOTTOM
   ========================================================= */

.school-hero-bottom {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    justify-content: center;
}

.school-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #98a2b3;
    font-size: 11px;
    animation: schoolScroll 2s ease-in-out infinite;
}

    .school-scroll-indicator i {
        color: #246b9e;
        font-size: 17px;
    }


/* =========================================================
   FEATURES
   ========================================================= */

.school-features-section {
    position: relative;
    padding: 110px 25px 125px;
    background: #fff;
}

.school-section-container {
    max-width: 1250px;
    margin: 0 auto;
}

.school-section-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.school-section-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #246b9e;
    font-size: 13px;
    font-weight: 800;
}

    .school-section-overline span {
        width: 22px;
        height: 2px;
        border-radius: 10px;
        background: #2a9d8f;
    }

.school-section-heading h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.45;
}

    .school-section-heading h2 span {
        color: #246b9e;
    }

.school-section-heading p {
    max-width: 620px;
    margin: 15px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 2;
}

.school-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
}

.school-feature-card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    padding: 28px 22px;
    border: 1px solid #edf0f5;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .055);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .school-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(16, 24, 40, .11);
    }

    .school-feature-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        top: -50px;
        left: -50px;
        border-radius: 50%;
        opacity: .07;
    }

.school-feature-red::after {
    background: #ee7377;
}

.school-feature-yellow::after {
    background: #f8c52f;
}

.school-feature-purple::after {
    background: #8576ee;
}

.school-feature-cyan::after {
    background: #57bcda;
}

.school-feature-pink::after {
    background: #e377d0;
}

.school-feature-number {
    position: absolute;
    top: 19px;
    left: 20px;
    color: #dfe5ed;
    font-size: 13px;
    font-weight: 900;
}

.school-feature-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    transition: transform .35s ease;
}

.school-feature-card:hover .school-feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.school-feature-red .school-feature-icon {
    background: linear-gradient(135deg, #ee7377, #f49b9e);
}

.school-feature-yellow .school-feature-icon {
    background: linear-gradient(135deg, #f8c52f, #ffd866);
}

.school-feature-purple .school-feature-icon {
    background: linear-gradient(135deg, #8576ee, #aaa0fa);
}

.school-feature-cyan .school-feature-icon {
    background: linear-gradient(135deg, #57bcda, #7dd5eb);
}

.school-feature-pink .school-feature-icon {
    background: linear-gradient(135deg, #e377d0, #ef9de5);
}

.school-feature-content h3 {
    margin: 0 0 11px;
    color: #1d2939;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
}

.school-feature-content p {
    margin: 0;
    color: #98a2b3;
    font-size: 12px;
    line-height: 2;
}

.school-feature-arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: #d1d8e2;
    transition: all .3s ease;
}

.school-feature-card:hover .school-feature-arrow {
    color: #246b9e;
    transform: translateX(-5px);
}


/* =========================================================
   CTA
   ========================================================= */

.school-cta {
    position: relative;
    overflow: hidden;
    padding: 70px 25px;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .12), transparent 25%), linear-gradient(135deg, #173d5c, #246b9e 50%, #2a9d8f);
}

.school-cta-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.school-cta-icon {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #246b9e;
    background: #fff;
    font-size: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.school-cta-content {
    flex: 1;
}

    .school-cta-content > span {
        display: block;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, .72);
        font-size: 13px;
    }

    .school-cta-content h2 {
        margin: 0 0 5px;
        color: #fff;
        font-size: 25px;
        font-weight: 900;
    }

    .school-cta-content p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: 13px;
    }

.school-cta-button {
    min-width: 150px;
    min-height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px;
    color: #246b9e !important;
    background: #fff;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
    transition: all .3s ease;
}

    .school-cta-button:hover {
        color: #246b9e !important;
        transform: translateY(-4px);
        box-shadow: 0 20px 35px rgba(0, 0, 0, .18);
    }

.school-cta-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.school-cta-decoration-one {
    width: 300px;
    height: 300px;
    top: -180px;
    right: -50px;
}

.school-cta-decoration-two {
    width: 220px;
    height: 220px;
    bottom: -150px;
    left: 10%;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes schoolImageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes schoolCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(1deg);
    }
}

@keyframes schoolCardFloatReverse {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes schoolOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes schoolOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes schoolScroll {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .school-hero-container {
        gap: 25px;
    }

    .school-hero-title {
        font-size: 52px;
    }

    .school-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .school-feature-card:last-child {
        grid-column: span 3;
    }
}


@media (max-width: 991px) {

    .school-hero {
        min-height: auto;
    }

    .school-hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 90px;
        text-align: center;
    }

    .school-hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .school-hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .school-hero-actions {
        justify-content: center;
    }

    .school-hero-trust {
        justify-content: center;
    }

    .school-hero-visual {
        min-height: 500px;
    }

    .school-floating-card-top {
        right: 4%;
    }

    .school-users-card {
        left: 4%;
    }

    .school-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .school-feature-card:last-child {
        grid-column: auto;
    }

    .school-cta-container {
        flex-wrap: wrap;
    }

    .school-cta-content {
        min-width: calc(100% - 100px);
    }

    .school-cta-button {
        margin-right: auto;
    }
}


@media (max-width: 767px) {

    .school-hero-container {
        padding: 45px 20px 75px;
    }

    .school-hero-title {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .school-hero-description {
        font-size: 15px;
        line-height: 2;
    }

    .school-hero-badge {
        font-size: 11px;
    }

    .school-hero-trust {
        gap: 15px;
    }

    .school-trust-line {
        display: none;
    }

    .school-hero-visual {
        min-height: 390px;
    }

    .school-hero-image-card {
        width: 88%;
        border-radius: 25px;
    }

    .school-floating-card-top {
        top: 20px;
        right: 0;
        transform: scale(.85);
    }

    .school-users-card {
        bottom: 15px;
        left: 0;
        transform: scale(.85);
    }

    .school-orbit-one {
        width: 390px;
        height: 390px;
    }

    .school-orbit-two {
        width: 310px;
        height: 310px;
    }

    .school-visual-glow {
        width: 300px;
        height: 300px;
    }

    .school-features-section {
        padding: 75px 18px 85px;
    }

    .school-section-heading {
        margin-bottom: 40px;
    }

        .school-section-heading h2 {
            font-size: 31px;
        }

    .school-features-grid {
        grid-template-columns: 1fr;
    }

    .school-feature-card {
        min-height: 245px;
    }

    .school-cta {
        padding: 50px 20px;
    }

    .school-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .school-cta-content {
        min-width: 0;
    }

    .school-cta-button {
        margin: 10px auto 0;
    }
}


@media (max-width: 480px) {

    .school-hero-title {
        font-size: 34px;
    }

    .school-hero-badge {
        padding: 8px 11px;
    }

    .school-hero-actions {
        flex-direction: column;
    }

    .school-hero-btn {
        width: 100%;
    }

    .school-hero-trust {
        flex-direction: column;
        gap: 14px;
    }

    .school-hero-visual {
        min-height: 320px;
    }

    .school-floating-card-top {
        display: none;
    }

    .school-users-card {
        left: 50%;
        transform: translateX(-50%) scale(.82);
        white-space: nowrap;
    }

    .school-section-heading h2 {
        font-size: 28px;
    }

    .school-section-heading p {
        font-size: 13px;
    }

    .school-feature-card {
        padding: 24px 20px;
    }

    .school-cta-content h2 {
        font-size: 21px;
    }
}


/* =========================================================
   HOME NOTIFICATIONS
   ========================================================= */

.home-notifications {
    position: relative;
    width: 100%;
    padding: 90px 20px 100px;
    background: radial-gradient(circle at 10% 20%, rgba(36, 107, 158, 0.08), transparent 30%), radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.08), transparent 30%), #f8fbfd;
    overflow: hidden;
}

    .home-notifications::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 1px solid rgba(36, 107, 158, 0.08);
        top: -220px;
        right: -180px;
    }

    .home-notifications::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 1px solid rgba(42, 157, 143, 0.08);
        bottom: -170px;
        left: -130px;
    }


.home-notifications-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* Header */

.home-notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.home-notifications-title {
    display: flex;
    align-items: center;
    gap: 18px;
}


.home-notifications-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    color: #fff;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(36, 107, 158, 0.20);
}


.home-notifications-title-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


    .home-notifications-title-content span {
        color: #2a9d8f;
        font-size: 13px;
        font-weight: 700;
    }


    .home-notifications-title-content h2 {
        margin: 0;
        color: #172b3a;
        font-size: 28px;
        font-weight: 900;
        line-height: 1.4;
    }


/* More button */

.home-notifications-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border: 1px solid rgba(36, 107, 158, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #246b9e !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(26, 54, 72, 0.07);
    transition: all 0.3s ease;
}


    .home-notifications-more i {
        transition: transform 0.3s ease;
    }


    .home-notifications-more:hover {
        transform: translateY(-3px);
        color: #fff !important;
        background: linear-gradient( 135deg, #246b9e, #2a9d8f );
        box-shadow: 0 12px 28px rgba(36, 107, 158, 0.20);
    }


        .home-notifications-more:hover i {
            transform: translateX(-5px);
        }


/* Divider */

.home-notifications-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 35px 0 35px;
    background: #e4edf2;
}


    .home-notifications-divider span {
        position: absolute;
        right: 0;
        top: -2px;
        width: 90px;
        height: 4px;
        border-radius: 10px;
        background: linear-gradient( 90deg, #246b9e, #2a9d8f );
    }


/* Cards Grid */

.home-notifications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


.home-notification-item {
    min-width: 0;
    animation: homeNotificationReveal 0.7s ease both;
}


    .home-notification-item:nth-child(2) {
        animation-delay: 0.10s;
    }


    .home-notification-item:nth-child(3) {
        animation-delay: 0.20s;
    }


    .home-notification-item:nth-child(4) {
        animation-delay: 0.30s;
    }


    .home-notification-item:nth-child(5) {
        animation-delay: 0.40s;
    }


    .home-notification-item:nth-child(6) {
        animation-delay: 0.50s;
    }


@keyframes homeNotificationReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .home-notifications {
        padding: 70px 20px 80px;
    }

    .home-notifications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-notifications-title-content h2 {
        font-size: 24px;
    }
}


@media (max-width: 767px) {

    .home-notifications {
        padding: 60px 15px 70px;
    }

    .home-notifications-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-notifications-more {
        width: 100%;
        justify-content: center;
    }

    .home-notifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 575px) {

    .home-notifications-title {
        gap: 13px;
    }

    .home-notifications-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 17px;
        font-size: 21px;
    }

    .home-notifications-title-content span {
        font-size: 12px;
    }

    .home-notifications-title-content h2 {
        font-size: 21px;
    }

    .home-notifications-divider {
        margin: 28px 0;
    }
}

/* =========================================================
   HOME IMAGE ARCHIVE
   ========================================================= */

.home-gallery {
    position: relative;
    width: 100%;
    padding: 90px 20px 105px;
    background: #ffffff;
    overflow: hidden;
}


    /* Decorative background */

    .home-gallery::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(36, 107, 158, 0.035);
        top: -190px;
        left: -140px;
    }


    .home-gallery::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(42, 157, 143, 0.035);
        bottom: -150px;
        right: -100px;
    }


.home-gallery-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.home-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.home-gallery-title {
    display: flex;
    align-items: center;
    gap: 18px;
}


.home-gallery-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, #246b9e, #2a9d8f );
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(36, 107, 158, 0.20);
}


.home-gallery-title-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


    .home-gallery-title-content span {
        color: #2a9d8f;
        font-size: 13px;
        font-weight: 700;
    }


    .home-gallery-title-content h2 {
        margin: 0;
        color: #172b3a;
        font-size: 28px;
        font-weight: 900;
        line-height: 1.4;
    }


/* =========================================================
   MORE BUTTON
   ========================================================= */

.home-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border: 1px solid rgba(36, 107, 158, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: #246b9e !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(26, 54, 72, 0.07);
    transition: all 0.3s ease;
}


    .home-gallery-more i {
        transition: transform 0.3s ease;
    }


    .home-gallery-more:hover {
        transform: translateY(-3px);
        color: #ffffff !important;
        background: linear-gradient( 135deg, #246b9e, #2a9d8f );
        box-shadow: 0 12px 28px rgba(36, 107, 158, 0.20);
    }


        .home-gallery-more:hover i {
            transform: translateX(-5px);
        }


/* =========================================================
   DIVIDER
   ========================================================= */

.home-gallery-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 35px 0 35px;
    background: #e7eef2;
}


    .home-gallery-divider span {
        position: absolute;
        right: 0;
        top: -2px;
        width: 90px;
        height: 4px;
        border-radius: 10px;
        background: linear-gradient( 90deg, #246b9e, #2a9d8f );
    }


/* =========================================================
   IMAGE GRID
   ========================================================= */

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


.home-gallery-item {
    min-width: 0;
    animation: homeGalleryReveal 0.7s ease both;
}


    .home-gallery-item:nth-child(2) {
        animation-delay: 0.10s;
    }


    .home-gallery-item:nth-child(3) {
        animation-delay: 0.20s;
    }


    .home-gallery-item:nth-child(4) {
        animation-delay: 0.30s;
    }


    .home-gallery-item:nth-child(5) {
        animation-delay: 0.40s;
    }


    .home-gallery-item:nth-child(6) {
        animation-delay: 0.50s;
    }


@keyframes homeGalleryReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .home-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 991px) {

    .home-gallery {
        padding: 75px 20px 90px;
    }

    .home-gallery-title-content h2 {
        font-size: 24px;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}


@media (max-width: 767px) {

    .home-gallery {
        padding: 65px 15px 75px;
    }

    .home-gallery-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-gallery-more {
        width: 100%;
        justify-content: center;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 575px) {

    .home-gallery-title {
        gap: 13px;
    }

    .home-gallery-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 17px;
        font-size: 21px;
    }

    .home-gallery-title-content span {
        font-size: 12px;
    }

    .home-gallery-title-content h2 {
        font-size: 21px;
    }

    .home-gallery-divider {
        margin: 28px 0;
    }
}

/* =========================================================
   HOME NEWSLETTER
   ========================================================= */

.home-newsletter {
    position: relative;
    width: 100%;
    padding: 75px 20px 95px;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.home-newsletter-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================================
   MAIN CARD
   ========================================================= */

.home-newsletter-card {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient( 120deg, #173f60 0%, #246b9e 48%, #2a9d8f 100% );
    box-shadow: 0 25px 60px rgba(28, 76, 105, 0.20);
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-newsletter-content {
    position: relative;
    z-index: 5;
    width: 65%;
    padding: 55px 65px;
}


.home-newsletter-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 21px;
    backdrop-filter: blur(10px);
}


.home-newsletter-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
}


.home-newsletter-content h2 {
    margin: 0 0 14px;
    max-width: 650px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.65;
}


.home-newsletter-content > p {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 2.1;
}


/* =========================================================
   FORM
   ========================================================= */

.home-newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 650px;
    padding: 7px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}


.home-newsletter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}


    .home-newsletter-input-wrapper > i {
        position: absolute;
        right: 17px;
        top: 50%;
        transform: translateY(-50%);
        color: #8a9da9;
        font-size: 15px;
        pointer-events: none;
    }


    .home-newsletter-input-wrapper input {
        width: 100%;
        height: 52px;
        padding: 0 45px 0 18px;
        border: none;
        outline: none;
        border-radius: 12px;
        background: #ffffff;
        color: #263b4a;
        font-family: inherit;
        font-size: 14px;
        box-shadow: none !important;
    }


        .home-newsletter-input-wrapper input::placeholder {
            color: #98a7b0;
        }


        .home-newsletter-input-wrapper input:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15) !important;
        }


/* =========================================================
   BUTTON
   ========================================================= */

.home-newsletter-button {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 0 22px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #246b9e;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}


    .home-newsletter-button i {
        transition: transform .3s ease;
    }


    .home-newsletter-button:hover {
        transform: translateY(-2px);
        background: #172b3a;
        color: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    }


        .home-newsletter-button:hover i {
            transform: translateX(-5px);
        }


/* =========================================================
   NOTE
   ========================================================= */

.home-newsletter-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}


    .home-newsletter-note i {
        font-size: 12px;
    }


/* =========================================================
   DECORATION
   ========================================================= */

.home-newsletter-decoration {
    position: absolute;
    left: 0;
    top: 0;
    width: 42%;
    height: 100%;
}


.home-newsletter-main-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 55px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    animation: newsletterFloat 5s ease-in-out infinite;
}


.home-newsletter-circle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
}


.home-newsletter-circle-one {
    width: 58px;
    height: 58px;
    left: 18%;
    top: 20%;
    font-size: 18px;
}


.home-newsletter-circle-two {
    width: 72px;
    height: 72px;
    left: 67%;
    top: 19%;
    font-size: 20px;
}


.home-newsletter-circle-three {
    width: 50px;
    height: 50px;
    left: 18%;
    bottom: 18%;
    font-size: 17px;
}


@keyframes newsletterFloat {

    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}


/* =========================================================
   BACKGROUND GLOWS
   ========================================================= */

.home-newsletter-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.home-newsletter-glow-right {
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    background: radial-gradient( circle, rgba(42, 157, 143, 0.10), transparent 70% );
}


.home-newsletter-glow-left {
    width: 450px;
    height: 450px;
    left: -220px;
    bottom: -260px;
    background: radial-gradient( circle, rgba(36, 107, 158, 0.08), transparent 70% );
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .home-newsletter {
        padding: 65px 20px 80px;
    }

    .home-newsletter-card {
        min-height: auto;
    }

    .home-newsletter-content {
        width: 72%;
        padding: 45px;
    }

        .home-newsletter-content h2 {
            font-size: 26px;
        }

    .home-newsletter-decoration {
        width: 35%;
    }
}


@media (max-width: 767px) {

    .home-newsletter {
        padding: 55px 15px 70px;
    }

    .home-newsletter-card {
        border-radius: 25px;
    }

    .home-newsletter-content {
        width: 100%;
        padding: 40px 25px;
    }

        .home-newsletter-content h2 {
            font-size: 24px;
        }

        .home-newsletter-content > p {
            font-size: 14px;
        }

    .home-newsletter-decoration {
        display: none;
    }
}


@media (max-width: 575px) {

    .home-newsletter-content {
        padding: 32px 20px;
    }

        .home-newsletter-content h2 {
            font-size: 21px;
            line-height: 1.7;
        }

        .home-newsletter-content > p {
            font-size: 13px;
            line-height: 2;
        }

    .home-newsletter-form {
        flex-direction: column;
        padding: 6px;
    }

    .home-newsletter-input-wrapper input {
        height: 50px;
    }

    .home-newsletter-button {
        width: 100%;
    }

    .home-newsletter-note {
        align-items: flex-start;
        line-height: 1.8;
    }
}


/* =========================================================
   UNREAD CIRCULAR HEADER CARD
   ========================================================= */

.circular-alert-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 245px;
    min-height: 68px;
    padding: 9px 11px;
    gap: 11px;
    overflow: hidden;
    color: #172b3a !important;
    text-decoration: none !important;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98) );
    border: 1px solid rgba(38, 85, 248, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(26, 54, 72, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


/* Soft background glow */

.circular-alert-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    top: -48px;
    right: -30px;
    border-radius: 50%;
    background: rgba(38, 85, 248, 0.08);
    filter: blur(4px);
    pointer-events: none;
}


/* Hover */

.circular-alert-card:hover {
    transform: translateY(-3px);
    border-color: rgba(38, 85, 248, 0.20);
    box-shadow: 0 15px 35px rgba(38, 85, 248, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* =========================================================
   ICON
   ========================================================= */

.circular-alert-icon-box {
    position: relative;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #2655f8;
    background: linear-gradient( 135deg, rgba(38, 85, 248, 0.12), rgba(42, 157, 143, 0.10) );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.circular-alert-card:hover .circular-alert-icon-box {
    transform: scale(1.06) rotate(-3deg);
    background: linear-gradient( 135deg, rgba(38, 85, 248, 0.17), rgba(42, 157, 143, 0.14) );
}


/* =========================================================
   PULSE DOT
   ========================================================= */

.circular-alert-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 4px;
    right: 4px;
    border-radius: 50%;
    background: #ff5964;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(255, 89, 100, 0.35);
    animation: circularAlertPulse 2s infinite;
}

@keyframes circularAlertPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255, 89, 100, 0.35);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(255, 89, 100, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 89, 100, 0);
    }
}


/* =========================================================
   CONTENT
   ========================================================= */

.circular-alert-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.circular-alert-caption {
    color: #2a9d8f;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.circular-alert-title {
    display: block;
    color: #172b3a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.circular-alert-subtitle {
    color: #8b99a5;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}


/* =========================================================
   COUNT
   ========================================================= */

.circular-alert-count {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient( 135deg, #2655f8, #246b9e );
    box-shadow: 0 7px 16px rgba(38, 85, 248, 0.23);
}

    .circular-alert-count span {
        color: #fff;
        font-size: 12px;
        font-weight: 900;
        line-height: 1;
    }


/* =========================================================
   ARROW
   ========================================================= */

.circular-alert-arrow {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa7b2;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.circular-alert-card:hover .circular-alert-arrow {
    color: #2655f8;
    transform: translateX(-3px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .circular-alert-card {
        min-width: 220px;
    }

    .circular-alert-subtitle {
        display: none;
    }
}


@media (max-width: 767px) {

    .circular-alert-card {
        min-width: auto;
        width: auto;
        min-height: 54px;
        padding: 7px 8px;
        border-radius: 15px;
    }

    .circular-alert-icon-box {
        width: 39px;
        height: 39px;
        min-width: 39px;
        border-radius: 12px;
    }

    .circular-alert-content {
        display: none;
    }

    .circular-alert-count {
        width: 29px;
        height: 29px;
        min-width: 29px;
        border-radius: 9px;
    }

        .circular-alert-count span {
            font-size: 11px;
        }

    .circular-alert-arrow {
        display: none;
    }
}


@media (max-width: 420px) {

    .circular-alert-card {
        padding: 6px;
    }

    .circular-alert-icon-box {
        width: 37px;
        height: 37px;
        min-width: 37px;
    }
}



.color-top-div {
    height: 71px;
    background: linear-gradient( 135deg, #1d4ed8 0%, #2563eb 45%, #4f46e5 100% );
}

    /* نورهای ظریف پس‌زمینه */
    .color-top-div::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        top: -220px;
        right: 8%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        filter: blur(8px);
    }

    .color-top-div::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        bottom: -210px;
        left: 12%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        filter: blur(10px);
    }




/* =========================================
   Modern User Section
   ========================================= */

.modern-user-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    direction: rtl;
}


/* =========================================
   User Card
   ========================================= */

.modern-user-card {
    position: relative;
    min-width: 245px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .modern-user-card:hover {
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.11);
    }


/* =========================================
   Card Inner
   ========================================= */

.modern-user-card-inner {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 8px 12px;
    cursor: pointer;
}


/* =========================================
   Avatar
   ========================================= */

.modern-user-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.modern-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient( 135deg, #2563eb, #4f46e5 );
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.22);
}

    .modern-user-avatar span {
        line-height: 1;
    }


/* وضعیت آنلاین */

.modern-user-online {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}


/* =========================================
   User Info
   ========================================= */

.modern-user-info {
    flex: 1;
    min-width: 0;
    margin-right: 11px;
}

.modern-user-name {
    overflow: hidden;
    color: #1e293b;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 20px;
}

.modern-user-role {
    margin-top: 3px;
}


/* =========================================
   Role Badge
   ========================================= */

.modern-role {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 600;
}

    .modern-role i {
        font-size: 9px;
    }

    .modern-role.admin {
        color: #2563eb;
        background: #eff6ff;
    }

    .modern-role.user {
        color: #64748b;
        background: #f1f5f9;
    }


/* =========================================
   Arrow
   ========================================= */

.modern-user-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    color: #94a3b8;
    border-radius: 9px;
    background: #f8fafc;
    font-size: 11px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.modern-user-card:hover .modern-user-arrow {
    color: #2563eb;
    background: #eff6ff;
    transform: rotate(180deg);
}


/* =========================================
   Dropdown
   ========================================= */

.modern-user-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 9999;
    width: 245px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}


/* باز شدن Dropdown */

.modern-user-card:hover .modern-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================
   Dropdown Item
   ========================================= */

.modern-dropdown-item {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 8px;
    color: #475569;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

    .modern-dropdown-item:hover {
        color: #2563eb;
        background: #eff6ff;
        text-decoration: none;
    }


/* Icon */

.modern-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: 10px;
    color: #64748b;
    border-radius: 9px;
    background: #f8fafc;
    font-size: 13px;
    transition: color 0.2s ease, background 0.2s ease;
}

.modern-dropdown-item:hover .modern-dropdown-icon {
    color: #2563eb;
    background: #dbeafe;
}


/* Text */

.modern-dropdown-text {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
}


/* Arrow */

.modern-dropdown-arrow {
    color: #cbd5e1;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.modern-dropdown-item:hover .modern-dropdown-arrow {
    color: #2563eb;
    transform: translateX(-3px);
}


/* Divider */

.modern-dropdown-divider {
    height: 1px;
    margin: 6px 8px;
    background: #eef2f7;
}


/* Admin */

.admin-item:hover {
    color: #4f46e5;
}


/* Logout */

.logout-item {
    color: #64748b;
}

    .logout-item:hover {
        color: #dc2626;
        background: #fef2f2;
    }

        .logout-item:hover .modern-dropdown-icon {
            color: #dc2626;
            background: #fee2e2;
        }

        .logout-item:hover .modern-dropdown-arrow {
            color: #dc2626;
        }


/* =========================================
   Authentication Buttons
   ========================================= */

.modern-auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 92px;
    height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .modern-auth-btn:hover {
        transform: translateY(-1px);
        text-decoration: none;
    }


/* Icon */

.modern-auth-icon {
    font-size: 12px;
}


/* Login */

.login-btn {
    color: #ffffff;
    background: linear-gradient( 135deg, #2563eb, #4f46e5 );
    box-shadow: 0 5px 14px rgba(37, 99, 235, 0.20);
}

    .login-btn:hover {
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
    }


/* Register */

.register-btn {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
}

    .register-btn:hover {
        color: #1d4ed8;
        background: #dbeafe;
    }


/* =========================================
   Responsive
   ========================================= */

@media (max-width: 767px) {

    .modern-user-section {
        justify-content: flex-start;
    }

    .modern-user-card {
        min-width: 220px;
    }

    .modern-user-dropdown {
        right: auto;
        left: 0;
    }

    .modern-auth-buttons {
        justify-content: flex-start;
    }
}