/*Start-----------------------[Font CSS ]------------------------*/
@font-face {
    font-family: 'Vazir';
    src: url('fonts/Vazir.woff2') format('woff2'),
         url('fonts/Vazir.woff') format('woff'),
         url('fonts/Vazir.ttf') format('truetype'),
         url('fonts/Vazir.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* برای نمایش بهتر هنگام لود */
}

body {
    font-family: 'Vazir', sans-serif;
    direction: rtl; /* برای متن‌های فارسی/عربی ضروری */
    text-align: right; /* تراز متن به راست */
}
:root {
--bs-blue-0: #142563;
--bs-blue-1: #2563eb;
--bs-blue-11:#3191d1;
--bs-blue-2: #74adf8;
--bs-blue-3: #99c1f5;
--bs-blue-4: #b9d4f8;
--bs-blue-5: #dbe7f7;
--bs-blue-6: #e6ecf7;
--bs-white : #ffffff;

--bs-secondary: #6c757d;

--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

/*Start---------------------[ photoGallery CSS ]------------------------*/
    /* استایل‌های ضروری */
    .photoGallery-sidebar-header {
        background-color: var(--bs-blue-1) !important;
        color: var(--bs-white);
        text-align: center;
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    .photoGallery-album-item {
        background-color: var(--bs-blue-5) !important;
        /*border-right: 3px solid var(--bs-blue-2) !important;*/
        color: var(--bs-blue-1);

    }

    .photoGallery-album-item.active {
        background-color: var(--bs-blue-3) !important;
        border-right: 3px solid var(--bs-blue-1) !important;
    }
    .photoGallery-album-item:hover {
        background-color: var(--bs-blue-3) !important;
        border-right: 3px solid var(--bs-blue-1) !important;
        color: var(--bs-blue-1);
    }
    .photoGallery-album-header {
        background-color: var(--bs-blue-5) !important;
        border: 1px solid var(--bs-blue-1) !important;
        color: var(--bs-blue-1);
    }
    .photoGallery-album-header-title {
        font-weight: bold;
        font-size: 2rem;
        color: var(--bs-blue-1);
    }
    .photoGallery-album-header-body {
        font-weight: bold;
        font-size: 1rem;
        color: var(--bs-blue-2);
    }
    .photoGallery-album-header-badge{
        background-color: var(--bs-blue-1) !important;
        border: 1px solid var(--bs-blue-1) !important;
        border-radius: 10px;
        text-align: center;
        color: var(--bs-white);

    }

    .photoGallery-img-container {
        height: 250px;
        overflow: hidden;
        cursor: pointer;
    }
    
    .photoGallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .photoGallery-card:hover .photoGallery-img {
        transform: scale(1.05);
    }
    
    .photoGallery-card:hover {
        box-shadow: 0 10px 20px var(--bs-blue-1) !important;
    }
    
    /* استایل‌های modal سفارشی */
    .modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: modalFadeIn 0.3s ease;
    }
    
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
    
    .modal-content {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    
    .modal-body {
        min-height: 60vh;
        background-color: #000;
    }
    
    #modalImage {
        max-height: 70vh;
        object-fit: contain;
    }
    
    /* دکمه‌های ناوبری */
    .btn-nav {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: all 0.3s ease;
        background-color: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-nav:hover {
        opacity: 1;
        transform: scale(1.1);
        background-color: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    /* حالت‌های responsive برای modal */
    @media (max-width: 768px) {
        .modal-dialog {
            width: 95%;
            margin: 0;
        }
        
        .modal-body {
            min-height: 40vh;
        }
        
        #modalImage {
            max-height: 50vh;
        }
        
        .btn-nav {
            width: 40px;
            height: 40px;
            font-size: 0.8rem;
        }
    }
    
    /* افکت کلیک */
    .gallery-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* بهبود نمایش متن در modal */
    #modalDescription {
        font-size: 1rem;
        line-height: 1.6;
        white-space: pre-line;
    }
    
    /* نمایش شماره تصویر */
    .gallery-img-container .badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    /* استایل دکمه بستن */
    .btn-close-white {
        filter: invert(1) grayscale(100%) brightness(200%);
    }

/*End-----------------------[ photoGallery CSS ]------------------------*/

/*Start-----------------------[Section CSS ]------------------------*/
.section {
    padding: 50px 0;
    margin-bottom: 30px;
}
/* #hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900?nature');
    background-size: cover;
    color: white;
} */
#features {
    background-color: #f8f9fa;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}
#testimonials .card {
    height: 100%;
}
#contact {
    background-color: #e9ecef;
}
.social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #0d6efd;
}
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
/*End-----------------------[Section CSS ]------------------------*/


/*Start-----------------------[ Body CSS ]------------------------*/
.small-header {
   /* background: var(--2, #3f5af3);*/
    padding: 1px 0;
}
.small-header-sub-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-header-sub p {
    color: var(--5, #FFF);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    padding-top: 20px;
    line-height: 24px;
}
.small-header-sub p img {
    padding-left: 5px;
}
.small-header-sub {
    display: flex;
    align-items: center;
    gap: 60px;
}
.small-header-media-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
header {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: -50px;
    z-index: 500;
    width: 100%;
}
.header-sub {
    display: flex;
    align-items: center;
    padding: 10px 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu {
    flex-grow: 1;
}
.menu-list {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 40px;
}
.menu-list li {
    position: relative;
}
.menu-list a {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    align-items: stretch;
}
.contact {
    display: flex;
    align-items: center;
    gap: 10px;
}
.arrow-icon-menu {
    transition: transform 0.3s ease-in-out;
}
.arrow-icon-menu.up {
    transform: rotate(180deg);
}
.wrapper-men {
    width: auto !important;
    position: relative;
}
.menu-text:hover {
    filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(1249%) hue-rotate(350deg) brightness(100%) contrast(90%);
}
.menu-ul-list {
    display: none;
    margin-top: -1px;
    background: #FFF;
    padding-right: 0;
    position: absolute;
    top: 60px;
    right: -280px;
    width: 690px;
    z-index: 5;
    border-top: 2px solid #F16122;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.menu-ul-list a {
    border-bottom: 1px solid #FFF;
    padding: 10px 12px;
}
.menu-ul-list-d ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
    width: 100%;
}
.menu-ul-list-d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 20px;
}
.menu-ul-list-d img {
    width: 250px;
}
.menu-ul-list a:hover {
    background: #F16122;
    transition:all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.menu-ul-list a:hover {
    color: #FFF;
}
.menu-text.active,
.submenu-link.active {
    background: #F16122;
    color: #FFF;
}
.wrapper.wrapper-men.active .menu-text {
    filter: brightness(0) saturate(100%) invert(40%) sepia(84%) saturate(1312%) hue-rotate(348deg) brightness(98%) contrast(93%);
}
.active-home a {
    color: #F16122 !important;
}
/*End-----------------------[ Header CSS ]------------------------*/


/*Start-----------------------[ NewsTotal CSS ]------------------------*/
    .news-list-container {
        padding: 2rem 0;
    }
    .main-news-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    .news-card-header {
        background-color: #3498db;
        color: white;
        padding: 1.2rem 1.5rem;
    }
    .news-card-header h2 {
        margin: 0;
        font-weight: 600;
        font-size: 1.5rem;
    }
    .news-table {
        width: 100%;
        border-collapse: collapse;
    }
    .news-table th {
        background-color: #f8f9fa;
        padding: 0.8rem 1rem;
        text-align: right;
        font-weight: 600;
        color: #495057;
        border-bottom: 2px solid #eee;
    }
    .news-table td {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }
    .news-table tr:last-child td {
        border-bottom: none;
    }
    .news-table tr:hover {
        background-color: #f8f9fa;
    }
    .news-id {
        width: 60px;
        text-align: center;
        color: #6c757d;
    }
    .news-date {
        width: 120px;
        text-align: left;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .news-title {
        font-weight: 500;
        color: #2c3e50;
    }
    .news-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }
    .news-title a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .news-attachment {
        width: 100px;
        text-align: center;
    }
    .attachment-badge {
        background-color: #e3f2fd;
        color: #1976d2;
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        font-size: 0.8rem;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    .pagination-container {
        padding: 1rem 1.5rem;
        background-color: #f8f9fa;
        border-top: 1px solid #eee;
    }
    .no-news {
        padding: 2rem;
        text-align: center;
        color: #6c757d;
    }
/*End-----------------------[ NewsTotal CSS ]------------------------*/


/*Start---------------------[ teacher CSS ]------------------------*/
        
        .teacher-card {
            background-color: #ffffff;
            border: 1px solid #dbeafe;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .teacher-card:hover {
            border-color: var(--color-primary-orange);
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.15);
            transform: translateY(-3px);
        }
        .teacher-card-header {    /*  هدر صفحه */   
            background: #5b2b6e;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }
        .teacher-card-header-corner {    /*  اطلاعات سمت چپ هدر صفحه */   
            background: #f3f4f8ff;
            color: #5b2b6e;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }
        .teacher-sidebar-header {     /* هدر ساید بار */ 
            background: #5b2b6e;  
            color: #ffffff;
            border-top-left-radius: 11px;
            border-top-right-radius: 11px;
        }
        .teacher-year-item {    /*  ساید بار آیتم سال */ 
            border: none;
            color: #5b2b6e;
            border-bottom: 1px solid #dd8521;
            transition: all 0.2s ease;
            background-color: #f3dff0;
        }
        .teacher-year-item:hover {    /*  ساید بار آیتم سال موس */ 
            background-color: #d28cf3;
            padding-right: 15px;
        }
        .teacher-year-item.active {     /*  ساید بار آیتم سال فعال */ 
            background-color: #d28cf3;
            color: #0c6426;
            border-right: 4px solid #5b2b6e;
        }
        .teacher-current-year-badge {     /*  ساید بار آیتم جاری */ 
            background-color: #5b2b6e;
            color: white;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        .teacher-filter-card {     /*  فیلتر کارت */ 
            background: #f3dff0;
            color: #5b2b6e;
            border: 1px solid #5b2b6e;
            border-radius: 10px;
            box-shadow: 0 2px 6px #5b2b6e(0, 0, 0, 0.05);
        }
        .teacher-select-custom {      /*  فیلتر  انتخاب */
            border: 1px solid #5b2b6e;
            background-color: #ffffff;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .teacher-select-custom:focus {       /*  فیلتر  انتخاب موس */
            border-color: #dd8521;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }
        .teacher-btn-reset-custom {          /*   فیلتر  ریست دکمه */
            background: #5b2b6e;
            color: white;
            border: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            padding: 8px 20px;
        }
        .teacher-btn-reset-custom:hover {          /*   فیلتر  ریست دکمه موس */
            background: #d28cf3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
        }

        .teacher-group-card {       /*  گروه معلمان  انتخاب */
            background-color: #ffffff;
            border: 1px solid #dbeafe;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
            transition: all 0.2s ease;
        }
        .teacher-group-card:hover {       /*  گروه معلمان  انتخاب موس */
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
        }
        .teacher-group-header {       /*  گروه معلمان  هدر */
            background: #5b2b6e;
            color: #ffffff;
            border: none;
            border-top-left-radius: 9px;
            border-top-right-radius: 9px;
        }
                .teacher-group-title {       /*  گروه معلمان  عنوان */
            font-weight: 700;
            color: #ffffff;
            border-right: 4px solid var(--color-primary-orange);
            padding-right: 10px;
        }
        .teacher-badge-group-header {       /*  گروه معلمان  هدر */
            background: #ffffff;
            color: #5b2b6e;
            border: none;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }
        .teacher-img-container {       /*  عکس  معلمان  قاب */
            background-color: #ffffff;
            border: 1px solid #5b2b6e;
            border-radius:5px;
        }
        .teacher-details {       /*   معلمان  جزئیات */
            padding: 15px;
            text-align: center;
        }
        .teacher-details-post {       /*   معلمان  جزئیات پست */
            background-color: rgb(231, 224, 248);
            padding: 15px;
            text-align: center;
        }

        .teacher-name {          /*   معلمان  نام */
            font-size: 1.2rem;
            font-weight: 700;
            color: #5b2b6e;
            margin-bottom: 0.8rem;
            text-align: center;
        }
        .teacher-info-item-label {          /*   معلمان  لیبل */
            color: #8b5cf6ff;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
            text-align: right;

        }
        .teacher-day-in-school {
            font-size: 0.85rem;
            color: var(--color-primary);
            background-color: #f5f3ff;
            padding: 4px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 5px;
        }

        .teacher-info-item {          /*   معلمان  آیتم اطلاعات */
            font-size: 0.9rem;
            color: #5b2b6e;
            margin-bottom: 0.4rem;
        }
        .teacher-footer {
            padding: 15px;
            background-color: #f8fafc;
            border-top: 1px solid #f1f5f9;
        }

        .teacher-info-item i {          /*   معلمان  آیتم اطلاعات i */
            color: #8b5cf6ff;
            width: 20px;
        }
        .teacher-empty-state-card {          /*   معلمان  حالت خالی */
            background: #fed7aa;
            border: 1px solid #fed7aa;
            border-radius: 10px;
        }

/*End-----------------------[ teacher CSS ]------------------------*/

/*Start---------------------[ student CSS ]------------------------*/
        
          /*  background-color: #2563eb;
            border: 1px solid #b5d2f8;*/

        .student-card {
            background-color: #ffffff;
            border: 1px solid #dbeafe;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .student-card:hover {
            border-color: var(--color-primary-orange);
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.15);
            transform: translateY(-3px);
        }

        .student-card-header {    /*  هدر صفحه */   
            background: #2563eb;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .student-card-header-corner {    /*  اطلاعات سمت چپ هدر صفحه */   
            background: #f3f4f8ff;
            color: #2563eb;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }
        .student-sidebar-header {     /* هدر ساید بار */ 
            background: #2563eb;  
            color: #ffffff;
            border-top-left-radius: 11px;
            border-top-right-radius: 11px;
        }
        .student-year-item {    /*  ساید بار آیتم سال */ 
            border: none;
            color: #2563eb;
            border-bottom: 1px solid #dd8521;
            transition: all 0.2s ease;
            background-color: #cbdef7;  /* cadbf5 */
        }

        .student-year-item:hover {    /*  ساید بار آیتم سال موس */ 
            background-color: #99c1f5;
            padding-right: 15px;
        }

        .student-year-item.active {     /*  ساید بار آیتم سال فعال */ 
            background-color: #99c1f5;
            color: #0c6426;   
            border-right: 4px solid #2563eb;
        }

        .student-current-year-badge {     /*  ساید بار آیتم جاری */ 
            background-color: #2563eb;
            color: #ffffff;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        .student-filter-card {     /*  فیلتر کارت */ 
            background: #cbdef7;
            color: #2563eb;
            border: 1px solid #2563eb;
            border-radius: 10px;
            box-shadow: 0 2px 6px #2563eb(0, 0, 0, 0.05);
        }
        .student-select-custom {      /*  فیلتر  انتخاب */
            border: 1px solid #2563eb;
            background-color: #ffffff;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .student-select-custom:focus {       /*  فیلتر  انتخاب موس */
            border-color: #dd8521;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }
        .student-btn-reset-custom {          /*   فیلتر  ریست دکمه */
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            padding: 8px 20px;
        }
        .student-btn-reset-custom:hover {          /*   فیلتر  ریست دکمه موس */
            background: #76aaee;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

        .student-group-card {       /*  گروه دانش آموزان  انتخاب */
            background-color: #2563eb;
            border: 1px solid #dbeafe;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
            transition: all 0.2s ease;
        }
        .student-group-card:hover {       /*  گروه دانش آموزان  انتخاب موس */
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
        }
        .student-group-header {       /*  گروه دانش آموزان  هدر */
            background: #2563eb;
            color: #ffffff;
            border: none;
            border-top-left-radius: 9px;
            border-top-right-radius: 9px;
        }
        .student-group-title {       /*  گروه دانش آموزان  عنوان */
            font-weight: 700;
            color: #ffffff;
            border-right: 4px solid #2563eb;
            padding-right: 10px;
        }
        .student-badge-group-header {       /*  گروه دانش آموزان  هدر */
            background: #ffffff;
            color: #2563eb;
            border: none;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }
        .student-img-container {       /*  عکس  دانش آموزان  قاب */
            background-color: #dbeafe;
            border: 1px solid #2563eb;
            border-radius:5px;
        }
        .student-name {          /*   دانش آموزان  نام */
            font-size: 1rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 0.8rem;
            text-align: center;
        }


/*End-----------------------[ student CSS ]------------------------*/



/*Start---------------------[ graguate CSS ]------------------------*/
        
        .graduate-card {
            background-color: #ffffff;
            border: 1px solid #dbeafe;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .graduate-card:hover {
            border-color: var(--color-primary-orange);
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.15);
            transform: translateY(-3px);
        }

        .graduate-card-header {    /*  هدر صفحه */   
            background: #142563;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .graduate-card-header-corner {    /*  اطلاعات سمت چپ هدر صفحه */   
            background: #f3f4f8ff;
            color: #142563;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }
        .graduate-sidebar-header {     /* هدر ساید بار */ 
            background: #142563;  
            color: #ffffff;
            border-top-left-radius: 11px;
            border-top-right-radius: 11px;
        }
        .graduate-year-item {    /*  ساید بار آیتم سال */ 
            border: none;
            color: #142563;
            border-bottom: 1px solid #dd8521;
            transition: all 0.2s ease;
            background-color: #cadbf5;
        }
        .graduate-year-item:hover {    /*  ساید بار آیتم سال موس */ 
            background-color: #76aaee;
            padding-right: 15px;
        }
        .graduate-year-item.active {     /*  ساید بار آیتم سال فعال */ 
            background-color: #76aaee;
            color: #0c6426;
            border-right: 4px solid #142563;
        }
        .graduate-current-year-badge {     /*  ساید بار آیتم جاری */ 
            background-color: #142563;
            color: white;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        .graduate-filter-card {     /*  فیلتر کارت */ 
            background: #cadbf5;
            color: #142563;
            border: 1px solid #142563;
            border-radius: 10px;
            box-shadow: 0 2px 6px #142563(0, 0, 0, 0.05);
        }
        .graduate-select-custom {      /*  فیلتر  انتخاب */
            border: 1px solid #142563;
            background-color: #ffffff;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .graduate-select-custom:focus {       /*  فیلتر  انتخاب موس */
            border-color: #dd8521;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }
        .graduate-btn-reset-custom {          /*   فیلتر  ریست دکمه */
            background: #142563;
            color: white;
            border: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            padding: 8px 20px;
        }
        .graduate-btn-reset-custom:hover {          /*   فیلتر  ریست دکمه موس */
            background: #76aaee;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

        .graduate-group-card {       /*  گروه فارغ التحصیلان  انتخاب */
            background-color: #ffffff;
            border: 1px solid #dbeafe;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
            transition: all 0.2s ease;
        }
        .graduate-group-card:hover {       /*  گروه فارغ التحصیلان  انتخاب موس */
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
        }
        .graduate-group-header {       /*  گروه فارغ التحصیلان  هدر */
            background: #142563;
            color: #ffffff;
            border: none;
            border-top-left-radius: 9px;
            border-top-right-radius: 9px;
        }
        .graduate-group-title {       /*  گروه فارغ التحصیلان  عنوان */
            font-weight: 700;
            color: #ffffff;
            border-right: 4px solid var(--color-primary-orange);
            padding-right: 10px;
        }
        .graduate-badge-group-header {       /*  گروه معلمان  هدر */
            background: #ffffff;
            color: #142563;
            border: none;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }
        .graduate-img-container {       /*  عکس  فارغ التحصیلان  قاب */
            background-color: #ffffff;
            border: 1px solid #142563;
            border-radius:5px;
        }
        .graduate-details {       /*   فارغ التحصیلان  جزئیات */
            padding: 15px;
            text-align: center;
        }
        .graduate-name {          /*   فارغ التحصیلان  نام */
            font-size: 1.2rem;
            font-weight: 700;
            color: #142563;
            margin-bottom: 0.8rem;
            text-align: center;
        }
        .graduate-rank-badge {          /*   فارغ التحصیلان  رتبه */
            font-size: 2rem !important;
            font-weight: 800 !important;
            padding: 6px 12px !important;
            border-radius: 6px !important;
            background-color: #7f1d1d !important;
            color: white !important;
            border: 2px solid #7f1d1d !important;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 4px rgba(185, 28, 28, 0.3);
            text-align: center;
        }
        .graduate-university-info {          /*   فارغ التحصیلان  دانشگاه */
            background: #bfdbfe;
            border-radius: 8px;
            padding: 12px;
            margin-top: 10px;
            border: 1px solid #bfdbfe;
        }
        .graduate-info-item-label {          /*   فارغ التحصیلان  لیبل */
            color: #76aaee;
            font-weight: 600;
            margin-right: 5px;
        }
        .graduate-info-item {          /*   فارغ التحصیلان  آیتم اطلاعات */
            font-size: 0.85rem;
            color: #142563;
            margin-bottom: 0.4rem;
        }
        .graduate-info-item i {          /*   فارغ التحصیلان  آیتم اطلاعات i */
            color: #76aaee;
            width: 20px;
        }
        .graduate-empty-state-card {          /*   فارغ التحصیلان  حالت خالی */
            background: #fed7aa;
            border: 1px solid #fed7aa;
            border-radius: 10px;
        }

/*End-----------------------[ graguate CSS ]------------------------*/
/*Start---------------------[ contactUs CSS ]------------------------*/
        .contactUs-card-header {
            color:var(--bs-white);
            border-radius: 20px 20px 0 0 !important;
            background: var(--bs-blue-11);
            border-bottom: none;
            text-align: center;
            padding-top: 10px;
            padding-bottom: 10px;
            box-shadow:1px 0px 1px 1px var(--bs-secondary);

        }

        .contactUs-card-body {
            border-radius: 0 0 20px 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            background: var(--bs-blue-6);
            box-shadow:1px 1px 1px 1px var(--bs-secondary);
        }
        .contactUs-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bs-blue-11);
            border-radius: 50%;
            margin-left: 2px;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
            float:right;

        }

        .contactUs-title {
            font-weight: 600;
            color: var(--bs-blue-11);
            margin-top: 10px;
            padding-right: 10px;
            font-size: 1rem;
            float:right;

        }
        .contactUs-content {
            display: flex;
            align-items: center;
            float:right;
            margin-right: 60px;
            text-align: center;
        }
        .contactUs-item {
            text-decoration: none;
            margin-right: 60px;
            text-align: center;
            color: var(--bs-blue-0);
        }
        .contactUs-form-label {
            font-weight: 600;
            color: var(--bs-blue-0);
        }

        .form-control:focus, .form-select:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        .contactUs-invalid-feedback {
            display: block !important;
        }

        .contactUs-file-upload {
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .contactUs-file-upload:hover {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.05);
        }


        /* مودال موفقیت */
        .contactUs-success-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .contactUs-success-modal-backdrop.show {
            opacity: 1;
            visibility: visible;
        }

        .contactUs-success-modal-content {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            margin: 0 auto;
        }

        .contactUs-success-modal-backdrop.show .success-modal-content {
            transform: translateY(0);
        }

        .contactUs-success-icon {
            font-size: 4.5rem;
            color: #2ecc71;
            margin-bottom: 1.5rem;
        }

/*End-----------------------[ contactUs CSS ]------------------------*/



/*Start---------------------[ NewsTotal CSS ]------------------------*/
/*End-----------------------[ NewsTotal CSS ]------------------------*/
