:root {
    --primary-blue: #196d91;
    --light-blue: #bee3f8;
    --accent-blue: #3ca8a9;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-dark: #393b4f;
    --text-light: #a2a5a8;
    --success: #48bb78;
    --light-green: #7cad60;
    --light-teal: #3ca7a9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
background-color: var(--white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
    border: 2px solid var(--primary-blue);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo-secondary {
    font-size: 12px;
    color: var(--text-dark);
    margin-top: 2px;
}

#main-nav {
display: flex;
gap: 25px;
}

#main-nav a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: color 0.3s;
position: relative;
}

#main-nav a:hover {
color: var(--primary-blue);
}

#main-nav a::after {
content: '';
position: absolute;
bottom: -5px;
right: 0;
width: 0;
height: 2px;
background-color: var(--primary-blue);
transition: width 0.3s;
}

#main-nav a:hover::after {
width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/pattern.jpeg);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 16px;
}

.hero-tagline i {
    margin-left: 8px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-title span {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.primary-btn {
    background-color: var(--light-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn:hover {
    background-color: #5abd82;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: var(--light-teal);
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

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

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Sections Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 16px;
}

.section-badge i {
    margin-left: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Slider Section */
.gallery {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
}

.slide-overlay h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.slide-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    color: var(--primary-blue);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-blue);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Stages Section */
.stages {
    background-color: var(--light-bg);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stage-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stage-card:hover {
    transform: translateY(-10px);
}

.stage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.stage-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.stage-description {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Facilities Section */
.facilities {
    background-color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 20px;
    background-color: var(--white);
}

.facility-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.facility-description {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
    color: var(--light-blue);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--light-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #5abd82;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
    border: 2px solid white;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-primary {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-logo-secondary {
    font-size: 14px;
    color: #cbd5e0;
    margin-top: 5px;
}

.footer-description {
    margin-bottom: 25px;
    color: #cbd5e0;
    line-height: 1.8;
}

.official-logos {
    /*             display: flex; */
    gap: 15px;
    margin-bottom: 20px;
}

.official-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.commercial-record {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.commercial-record p {
    margin: 0;
}

.commercial-record code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #a2a5a8;
}

.footer-links i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact-info i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
    color: white;
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-contact:hover {
    background-color: #196d91;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-contact i {
    margin-left: 8px;
    font-size: 20px;
}

.footer-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #cbd5e0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    #main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    #main-nav.active {
        right: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stages-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .official-logos {
        justify-content: center;
    }

    .slide img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 90px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .slide img {
        height: 250px;
    }
}

.hero-stats span {
    color: var(--text-dark);
}

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

.about-content {
    font-family: 'Noto Naskh Arabic', sans-serif;
    direction: rtl;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    grid-auto-rows: 1fr;
}

.grid-item {
    padding: 20px;
    border-radius: 16px;
    color: #FFFFFF;
}

.grid-item strong {
    font-size: 20px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 10px;
}

.grid-item span {
    color: rgba(255, 255, 255, 0.8);
}

/* First item */
.grid-item:nth-child(1) {
    background-color: #0C6C92;
}

/* Second item */
.grid-item:nth-child(2) {
    background-color: #3ca6a8;
}

/* Third item */
.grid-item:nth-child(3) {
    background-color: #7cad61;
}

/* Fourth item */
.grid-item:nth-child(4) {
    background-color: #a2a5a8;
}

/* Media query for screens above 576px */
@media (min-width: 577px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Entrance animation keyframes */
@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Initial state - hidden */
.grid-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

/* Animation when in view */
.grid-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation */
.grid-item:nth-child(1) {
    transition-delay: 0.1s;
}

.grid-item:nth-child(2) {
    transition-delay: 0.2s;
}

.grid-item:nth-child(3) {
    transition-delay: 0.3s;
}

.grid-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Prevent iPhone from styling phone numbers */
a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Or target specific elements */
.footer-contact-info li {
    color: inherit !important;
}

.footer-contact-info li span {
    color: inherit !important;
}

/* Dropdown styles for desktop */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
}

/* Responsive dropdown styles */
@media (max-width: 768px) {
    .dropdown {
        display: none;
    }

    .mobile-dropdown-menu a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-dropdown-menu a:last-child {
        border-bottom: none;
    }
}

@media (min-width: 769px) {
    .mobile-dropdown {
        display: none;
    }
}



.ZFfasc5f5NTIdwkMzNMy .zhhsfrubRJBf86cRcjeS {
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.88);
    line-height: 32px;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv {
    position: relative;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv select {
    width: 100%;
    height: 32px;
    border-radius: 6px;
    opacity: 0.5;
    border: 1px solid #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 12px;
    padding-right: 30px;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv select:focus-visible {
    outline: none;
    border: 1px solid #000000;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv:focus-visible {
    border: none;
    background: salmon;
}

.rxQr7drg0GrqV8vmOncn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.M2gRdCRtGXZfWo_K9lvd {
    display: flex;
    flex-direction: column;
}

.M2gRdCRtGXZfWo_K9lvd .zhhsfrubRJBf86cRcjeS {
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 16px;
}




.IRoWVNnxMESYzrLAb1jW {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    opacity: 0.5;
    border: 1px solid #000000;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 400;
}

.IRoWVNnxMESYzrLAb1jW:focus-visible {
    outline: none;
}




.Ib6CUk9NvPeuYdBNTyjg {
    display: flex;
    align-items: flex-start;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"]:checked {
    border-color: #ff8f00;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"]:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff8f00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Ib6CUk9NvPeuYdBNTyjg label {
    flex: 1;
    cursor: pointer;
    margin-left: 32px;
    font-size: 14px;
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.88);
    line-height: 24px;
}



.c9sddWo_i7vCT4SyyItq {
    width: 100%;
    height: 100%;
    background: #ff8f00;
    position: relative;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 禁用状态的样式 */
}

.c9sddWo_i7vCT4SyyItq:disabled {
    background: #c2c2c2 !important;
    /* 更淡的背景色表示不可点击 */
    color: #eceff1;
    /* 淡色文字 */
    cursor: not-allowed;
    /* 禁用光标 */
    box-shadow: none;
    /* 去除阴影 */
}



.EEznAG43zTuQkQq624yy {
    width: 400px;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .Je2jFsFrbPjN7Upq5740 {
    width: 69px;
    height: 24px;
    margin: 7px 4px;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .Je2jFsFrbPjN7Upq5740 svg {
    width: 100%;
    height: 100%;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .c7QEl61sArXCQe0GnzQ5 {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO {
    padding: 8px 16px 16px;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO>a {
    display: block;
    padding-top: 8px;
    text-align: center;
    color: #3d5afe;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO>a:hover {
    color: #3d5afe;
}



.BW1QT6wRodElrY9DbAeQ {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.BW1QT6wRodElrY9DbAeQ .U_jFhfpfYNrIrQRSO7_Z {
    text-wrap: nowrap;
}

.BW1QT6wRodElrY9DbAeQ input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}

.BW1QT6wRodElrY9DbAeQ label {
    cursor: pointer;
    text-indent: -9999px;
    width: 56px;
    height: 28px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
}

.BW1QT6wRodElrY9DbAeQ label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.BW1QT6wRodElrY9DbAeQ input:checked+label {
    background: #ff8f00;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
}

.BW1QT6wRodElrY9DbAeQ input:checked+label:after {
    left: calc(100% - 4px);
    transform: translateX(-100%);
}

.BW1QT6wRodElrY9DbAeQ label:active:after {
    width: 56px;
}

.BW1QT6wRodElrY9DbAeQ body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}



.av93VnBkT8rC6BfwHXXl {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* 隐藏原始复选框 */
.av93VnBkT8rC6BfwHXXl input {
    visibility: hidden;
    position: absolute;
}

/* 自定义复选框的样式 */
.av93VnBkT8rC6BfwHXXl .ccHDoQWfCQ0wpKNe51Og {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    /* 背景色保持白色以保持较好的对比 */
    border: 1px solid #d9d9d9;
    /* 默认边框颜色为浅灰色 */
    display: inline-block;
    border-radius: 4px;
    /* 圆角 */
    transition: background-color 0.3s, border-color 0.3s;
    /* 添加过渡效果 */
}

/* 当复选框被选中或不确定状态时的样式 */
.av93VnBkT8rC6BfwHXXl input:checked+.ccHDoQWfCQ0wpKNe51Og,
.av93VnBkT8rC6BfwHXXl input:indeterminate+.ccHDoQWfCQ0wpKNe51Og {
    background-color: #ffc107;
    /* 金色背景 */
    border-color: #ffc107;
    /* 金色边框 */
}

/* 添加对号 */
.av93VnBkT8rC6BfwHXXl .ccHDoQWfCQ0wpKNe51Og:after {
    content: "";
    position: absolute;
    display: none;
}

.av93VnBkT8rC6BfwHXXl input:checked+.ccHDoQWfCQ0wpKNe51Og:after {
    display: block;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    /* Combine translations and rotations */
}

/* 不确定状态下的方块 */
.av93VnBkT8rC6BfwHXXl input:indeterminate+.ccHDoQWfCQ0wpKNe51Og:after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Perfectly center the square */
    width: 10px;
    height: 5px;
    background: white;
    /* 使用白色方块以增加对比度 */
}

/* 处理禁用状态 */
.av93VnBkT8rC6BfwHXXl input:disabled+.ccHDoQWfCQ0wpKNe51Og {
    background-color: #e0e0e0;
    /* 灰色背景表示禁用 */
    border-color: #bdbdbd;
    /* 灰色边框 */
    cursor: not-allowed;
    /* 鼠标禁用状态指示 */
}

.av93VnBkT8rC6BfwHXXl input:disabled+.ccHDoQWfCQ0wpKNe51Og:after {
    background: #bdbdbd;
    /* 灰色对号或方块表示禁用 */
}



.kLB7SXuCbOA1VDEuayQ2 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-height: 244px;
    width: 400px;
    background: #ffffff;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.08), 0px 1px 10px 0px rgba(0, 0, 0, 0.04), 0px 4px 5px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cLVWKu0XCorcERQg9FKl {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cLVWKu0XCorcERQg9FKl .jR9tZOYlGybercDP5RXg {
    animation: yjWYeSBhppaYr8pyCDGP 1s linear infinite;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cyF9d8HEngPs9BJtmRBB {
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.88);
    line-height: 22px;
    text-align: center;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .Panq7Ykt8Gxb0RQl78BV {
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #479e25;
    margin-top: 6px;
    line-height: 22px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}

@keyframes yjWYeSBhppaYr8pyCDGP {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}



.L6ydMcbc4E5EF6EfA6aG .ant-modal-title {
    font-weight: bold;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.hNkYvyrcRaG_kWiy3rkO {
    margin-top: 16px;
}

.hNkYvyrcRaG_kWiy3rkO .ant-alert-message {
    color: #2189e5;
}

.TmOCIHFUEqljERUfq_aY {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 24px;
}

.FijT8eY01qZ_10LX68JG {
    margin-bottom: 24px;
}

.FijT8eY01qZ_10LX68JG .lwYJMkm6l65Ew9BB03hg {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    flex-wrap: wrap;
}



.YezkX1bsuRLzG32QxqOg {
    top: 0;
    right: 0;
    z-index: 1;
    position: absolute;
    font-family: OpenSans-Bold, OpenSans;
    text-wrap: nowrap;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .SVkdhKdtfHfJYdb3DeAC {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .SVkdhKdtfHfJYdb3DeAC g {
    fill: antiquewhite;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .OCxxhXIFkJiVv3OW8Dki {
    flex: 1;
    text-align: center;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .eCi62QFGWYWFIdMKmoCY {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.YezkX1bsuRLzG32QxqOg .jkiqcnRJY9Y07V6l96yO {
    background: #2acc6f;
}

.YezkX1bsuRLzG32QxqOg .mUWOwtz1vBHUHo7ESj3H {
    background: #fb5b28;
}

.YezkX1bsuRLzG32QxqOg .AJ8PVFZUE_njDcnN2VtU {
    padding: 0 20px;
    background: #ff8f00;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    margin-top: 6px px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
    line-height: 38px;
}

.YezkX1bsuRLzG32QxqOg .AJ8PVFZUE_njDcnN2VtU svg {
    margin-right: 8px;
}

.mrHXcmsfueCtCtmrCvhk .UN3gm0MT4HG3PapvB5Es {
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: white !important;
    color: rgba(0, 0, 0, 0.24);
}

.mrHXcmsfueCtCtmrCvhk .UN3gm0MT4HG3PapvB5Es svg {
    margin-bottom: 4px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-height: 500px;
    overflow-x: hidden;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #f7f7f7;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #f7f7f7;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div {
    min-height: auto;
    background: rgba(0, 0, 0, 0.04);
    padding: 8px;
    margin-bottom: 16px;
    display: flex;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div:last-child {
    border-bottom: 0;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .irbDaxm05L90StDOVuFf {
    width: 54px;
    height: 54px;
    border-radius: 4px 4px 4px 4px;
    margin-right: 8px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .irbDaxm05L90StDOVuFf img {
    width: 100%;
    height: 100%;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u {
    min-height: 54px;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u .me9J0Ec7gRu7hAXPGzY_ {
    color: #000000;
    line-height: 16px;
    text-align: left;
    text-transform: none;
    margin-right: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 34px;
    width: 268px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u .w6zpsVlllx6TB6P6tv7T {
    width: 268px;
    color: #ff0000;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .h7v9y0cCilg07Xbu3ry8 {
    display: flex;
    align-items: center;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H button {
    margin-bottom: 8px;
    height: 36px;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H ._69nR89KKgxcsjj4aZVg {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H ._69nR89KKgxcsjj4aZVg svg {
    margin-right: 5px;
}



.WeMhfmnyjZApMUugIiUr {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    font-family: OpenSans-Bold, OpenSans;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .z568v0OExVt7aKAe_qwb {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .z568v0OExVt7aKAe_qwb g {
    fill: antiquewhite;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .YvPjV_lQ9LjrwsRvkSAx {
    flex: 1;
    text-align: center;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .w9aSxjg6VdZA_08E8a_P {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.WeMhfmnyjZApMUugIiUr .p5jxubOfKVHADwdR4sVq {
    background: #2acc6f;
}

.WeMhfmnyjZApMUugIiUr .BiGR8PrJwIl3jPvAzTRy {
    background: #fb5b28;
}

.WeMhfmnyjZApMUugIiUr .ddn6LFwb35gnBPJ__Ma4 {
    display: none;
    width: 98%;
    height: 32px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    line-height: 17px;
}

.WeMhfmnyjZApMUugIiUr .ddn6LFwb35gnBPJ__Ma4 svg {
    margin-right: 8px;
}



.vsK1fKu8GYkRlcoudhIh {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    font-family: OpenSans-Bold, OpenSans;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .mZYCnZhor58rYAUqK4ng {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .mZYCnZhor58rYAUqK4ng g {
    fill: antiquewhite;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .ngtRvSjrm9yOTPcnJvii {
    flex: 1;
    text-align: center;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .rd0GcjHkbm37tIo1UZkh {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.vsK1fKu8GYkRlcoudhIh .xqJbzeH_Z6QRQ9J1z5UV {
    background: #2acc6f;
}

.vsK1fKu8GYkRlcoudhIh .mmXPLYRJZx8YRhtuZOzD {
    background: #fb5b28;
}

.vsK1fKu8GYkRlcoudhIh .jaTHVmG4yPmCMGNQaqic {
    display: none;
    width: 98%;
    height: 32px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    line-height: 17px;
}

.vsK1fKu8GYkRlcoudhIh .jaTHVmG4yPmCMGNQaqic svg {
    margin-right: 8px;
}

.vsK1fKu8GYkRlcoudhIh .lXitMkUNrxq6Y3RWLqKg {
    position: absolute;
    top: 34px;
    left: 11px;
    z-index: 99999999;
}

.vsK1fKu8GYkRlcoudhIh .lXitMkUNrxq6Y3RWLqKg input {
    width: 18px;
    height: 18px;
}

.NlPS3pzpp0kyiw7u3qbU {
    width: 200px;
    height: 36px;
    background: #ff8f00;
    border-radius: 8px 8px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.NlPS3pzpp0kyiw7u3qbU>div {
    margin-right: 15px;
}

.NlPS3pzpp0kyiw7u3qbU button {
    background: #ff8f00;
    color: #ffffff;
}



.ZFfasc5f5NTIdwkMzNMy .zhhsfrubRJBf86cRcjeS {
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.88);
    line-height: 32px;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv {
    position: relative;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv select {
    width: 100%;
    height: 32px;
    border-radius: 6px;
    opacity: 0.5;
    border: 1px solid #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 12px;
    padding-right: 30px;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv select:focus-visible {
    outline: none;
    border: 1px solid #000000;
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.ZFfasc5f5NTIdwkMzNMy .TiFcRFnjGcRWQCxcglYv:focus-visible {
    border: none;
    background: salmon;
}

.rxQr7drg0GrqV8vmOncn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.M2gRdCRtGXZfWo_K9lvd {
    display: flex;
    flex-direction: column;
}

.M2gRdCRtGXZfWo_K9lvd .zhhsfrubRJBf86cRcjeS {
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 16px;
}



.IRoWVNnxMESYzrLAb1jW {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    opacity: 0.5;
    border: 1px solid #000000;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 400;
}

.IRoWVNnxMESYzrLAb1jW:focus-visible {
    outline: none;
}



.Ib6CUk9NvPeuYdBNTyjg {
    display: flex;
    align-items: flex-start;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"]:checked {
    border-color: #ff8f00;
}

.Ib6CUk9NvPeuYdBNTyjg input[type="radio"]:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff8f00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Ib6CUk9NvPeuYdBNTyjg label {
    flex: 1;
    cursor: pointer;
    margin-left: 32px;
    font-size: 14px;
    font-family: OpenSans-Regular, OpenSans;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.88);
    line-height: 24px;
}



.c9sddWo_i7vCT4SyyItq {
    width: 100%;
    height: 100%;
    background: #ff8f00;
    position: relative;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 禁用状态的样式 */
}

.c9sddWo_i7vCT4SyyItq:disabled {
    background: #c2c2c2 !important;
    /* 更淡的背景色表示不可点击 */
    color: #eceff1;
    /* 淡色文字 */
    cursor: not-allowed;
    /* 禁用光标 */
    box-shadow: none;
    /* 去除阴影 */
}



.EEznAG43zTuQkQq624yy {
    width: 400px;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .Je2jFsFrbPjN7Upq5740 {
    width: 69px;
    height: 24px;
    margin: 7px 4px;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .Je2jFsFrbPjN7Upq5740 svg {
    width: 100%;
    height: 100%;
}

.EEznAG43zTuQkQq624yy .Zt6_7jfC9rAnl4Hvckzs .c7QEl61sArXCQe0GnzQ5 {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO {
    padding: 8px 16px 16px;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO>a {
    display: block;
    padding-top: 8px;
    text-align: center;
    color: #3d5afe;
}

.EEznAG43zTuQkQq624yy .ci0NHoq5VTLikHkgliPO>a:hover {
    color: #3d5afe;
}



.BW1QT6wRodElrY9DbAeQ {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.BW1QT6wRodElrY9DbAeQ .U_jFhfpfYNrIrQRSO7_Z {
    text-wrap: nowrap;
}

.BW1QT6wRodElrY9DbAeQ input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}

.BW1QT6wRodElrY9DbAeQ label {
    cursor: pointer;
    text-indent: -9999px;
    width: 56px;
    height: 28px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
}

.BW1QT6wRodElrY9DbAeQ label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.BW1QT6wRodElrY9DbAeQ input:checked+label {
    background: #ff8f00;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
}

.BW1QT6wRodElrY9DbAeQ input:checked+label:after {
    left: calc(100% - 4px);
    transform: translateX(-100%);
}

.BW1QT6wRodElrY9DbAeQ label:active:after {
    width: 56px;
}

.BW1QT6wRodElrY9DbAeQ body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}



.av93VnBkT8rC6BfwHXXl {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* 隐藏原始复选框 */
.av93VnBkT8rC6BfwHXXl input {
    visibility: hidden;
    position: absolute;
}

/* 自定义复选框的样式 */
.av93VnBkT8rC6BfwHXXl .ccHDoQWfCQ0wpKNe51Og {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    /* 背景色保持白色以保持较好的对比 */
    border: 1px solid #d9d9d9;
    /* 默认边框颜色为浅灰色 */
    display: inline-block;
    border-radius: 4px;
    /* 圆角 */
    transition: background-color 0.3s, border-color 0.3s;
    /* 添加过渡效果 */
}

/* 当复选框被选中或不确定状态时的样式 */
.av93VnBkT8rC6BfwHXXl input:checked+.ccHDoQWfCQ0wpKNe51Og,
.av93VnBkT8rC6BfwHXXl input:indeterminate+.ccHDoQWfCQ0wpKNe51Og {
    background-color: #ffc107;
    /* 金色背景 */
    border-color: #ffc107;
    /* 金色边框 */
}

/* 添加对号 */
.av93VnBkT8rC6BfwHXXl .ccHDoQWfCQ0wpKNe51Og:after {
    content: "";
    position: absolute;
    display: none;
}

.av93VnBkT8rC6BfwHXXl input:checked+.ccHDoQWfCQ0wpKNe51Og:after {
    display: block;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    /* Combine translations and rotations */
}

/* 不确定状态下的方块 */
.av93VnBkT8rC6BfwHXXl input:indeterminate+.ccHDoQWfCQ0wpKNe51Og:after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Perfectly center the square */
    width: 10px;
    height: 5px;
    background: white;
    /* 使用白色方块以增加对比度 */
}

/* 处理禁用状态 */
.av93VnBkT8rC6BfwHXXl input:disabled+.ccHDoQWfCQ0wpKNe51Og {
    background-color: #e0e0e0;
    /* 灰色背景表示禁用 */
    border-color: #bdbdbd;
    /* 灰色边框 */
    cursor: not-allowed;
    /* 鼠标禁用状态指示 */
}

.av93VnBkT8rC6BfwHXXl input:disabled+.ccHDoQWfCQ0wpKNe51Og:after {
    background: #bdbdbd;
    /* 灰色对号或方块表示禁用 */
}


.kLB7SXuCbOA1VDEuayQ2 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-height: 244px;
    width: 400px;
    background: #ffffff;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.08), 0px 1px 10px 0px rgba(0, 0, 0, 0.04), 0px 4px 5px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cLVWKu0XCorcERQg9FKl {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cLVWKu0XCorcERQg9FKl .jR9tZOYlGybercDP5RXg {
    animation: yjWYeSBhppaYr8pyCDGP 1s linear infinite;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .cyF9d8HEngPs9BJtmRBB {
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.88);
    line-height: 22px;
    text-align: center;
}

.kLB7SXuCbOA1VDEuayQ2 .zEOKQl0KPtsInhEXQ5Bz .Panq7Ykt8Gxb0RQl78BV {
    font-size: 16px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #479e25;
    margin-top: 6px;
    line-height: 22px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}

@keyframes yjWYeSBhppaYr8pyCDGP {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}



.L6ydMcbc4E5EF6EfA6aG .ant-modal-title {
    font-weight: bold;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.hNkYvyrcRaG_kWiy3rkO {
    margin-top: 16px;
}

.hNkYvyrcRaG_kWiy3rkO .ant-alert-message {
    color: #2189e5;
}

.TmOCIHFUEqljERUfq_aY {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 24px;
}

.FijT8eY01qZ_10LX68JG {
    margin-bottom: 24px;
}

.FijT8eY01qZ_10LX68JG .lwYJMkm6l65Ew9BB03hg {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    flex-wrap: wrap;
}



.YezkX1bsuRLzG32QxqOg {
    top: 0;
    right: 0;
    z-index: 1;
    position: absolute;
    font-family: OpenSans-Bold, OpenSans;
    text-wrap: nowrap;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .SVkdhKdtfHfJYdb3DeAC {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .SVkdhKdtfHfJYdb3DeAC g {
    fill: antiquewhite;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .OCxxhXIFkJiVv3OW8Dki {
    flex: 1;
    text-align: center;
}

.YezkX1bsuRLzG32QxqOg .NO7_066UyH5F_wWr_CDK .eCi62QFGWYWFIdMKmoCY {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.YezkX1bsuRLzG32QxqOg .jkiqcnRJY9Y07V6l96yO {
    background: #2acc6f;
}

.YezkX1bsuRLzG32QxqOg .mUWOwtz1vBHUHo7ESj3H {
    background: #fb5b28;
}

.YezkX1bsuRLzG32QxqOg .AJ8PVFZUE_njDcnN2VtU {
    padding: 0 20px;
    background: #ff8f00;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    margin-top: 6px px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
    line-height: 38px;
}

.YezkX1bsuRLzG32QxqOg .AJ8PVFZUE_njDcnN2VtU svg {
    margin-right: 8px;
}

.mrHXcmsfueCtCtmrCvhk .UN3gm0MT4HG3PapvB5Es {
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: white !important;
    color: rgba(0, 0, 0, 0.24);
}

.mrHXcmsfueCtCtmrCvhk .UN3gm0MT4HG3PapvB5Es svg {
    margin-bottom: 4px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-height: 500px;
    overflow-x: hidden;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #f7f7f7;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #f7f7f7;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div {
    min-height: auto;
    background: rgba(0, 0, 0, 0.04);
    padding: 8px;
    margin-bottom: 16px;
    display: flex;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div:last-child {
    border-bottom: 0;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .irbDaxm05L90StDOVuFf {
    width: 54px;
    height: 54px;
    border-radius: 4px 4px 4px 4px;
    margin-right: 8px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .irbDaxm05L90StDOVuFf img {
    width: 100%;
    height: 100%;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u {
    min-height: 54px;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u .me9J0Ec7gRu7hAXPGzY_ {
    color: #000000;
    line-height: 16px;
    text-align: left;
    text-transform: none;
    margin-right: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 34px;
    width: 268px;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .BEeSRQYIPezxiElL7Y1u .w6zpsVlllx6TB6P6tv7T {
    width: 268px;
    color: #ff0000;
}

.mrHXcmsfueCtCtmrCvhk .MWgMsOT14PgnlhzDhUao>div .h7v9y0cCilg07Xbu3ry8 {
    display: flex;
    align-items: center;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H button {
    margin-bottom: 8px;
    height: 36px;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H ._69nR89KKgxcsjj4aZVg {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.mrHXcmsfueCtCtmrCvhk .u4k0WEcFhM_UruSqNh2H ._69nR89KKgxcsjj4aZVg svg {
    margin-right: 5px;
}



.WeMhfmnyjZApMUugIiUr {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    font-family: OpenSans-Bold, OpenSans;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .z568v0OExVt7aKAe_qwb {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .z568v0OExVt7aKAe_qwb g {
    fill: antiquewhite;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .YvPjV_lQ9LjrwsRvkSAx {
    flex: 1;
    text-align: center;
}

.WeMhfmnyjZApMUugIiUr .D5xruGoBdBD8fjbDpn0T .w9aSxjg6VdZA_08E8a_P {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.WeMhfmnyjZApMUugIiUr .p5jxubOfKVHADwdR4sVq {
    background: #2acc6f;
}

.WeMhfmnyjZApMUugIiUr .BiGR8PrJwIl3jPvAzTRy {
    background: #fb5b28;
}

.WeMhfmnyjZApMUugIiUr .ddn6LFwb35gnBPJ__Ma4 {
    display: none;
    width: 98%;
    height: 32px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    line-height: 17px;
}

.WeMhfmnyjZApMUugIiUr .ddn6LFwb35gnBPJ__Ma4 svg {
    margin-right: 8px;
}



.vsK1fKu8GYkRlcoudhIh {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    font-family: OpenSans-Bold, OpenSans;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 {
    width: 100%;
    height: 21px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .mZYCnZhor58rYAUqK4ng {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .mZYCnZhor58rYAUqK4ng g {
    fill: antiquewhite;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .ngtRvSjrm9yOTPcnJvii {
    flex: 1;
    text-align: center;
}

.vsK1fKu8GYkRlcoudhIh .kNT2mFuNFTBP9Hi7bAC8 .rd0GcjHkbm37tIo1UZkh {
    min-width: 45px;
    height: 21px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11bc57;
    border-top-right-radius: 8px;
    border-left: 1px solid #00b050;
}

.vsK1fKu8GYkRlcoudhIh .xqJbzeH_Z6QRQ9J1z5UV {
    background: #2acc6f;
}

.vsK1fKu8GYkRlcoudhIh .mmXPLYRJZx8YRhtuZOzD {
    background: #fb5b28;
}

.vsK1fKu8GYkRlcoudhIh .jaTHVmG4yPmCMGNQaqic {
    display: none;
    width: 98%;
    height: 32px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.08), 0px 3px 14px 2px rgba(0, 0, 0, 0.04), 0px 8px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-family: OpenSans-Bold, OpenSans;
    font-weight: bold;
    color: #ffffff;
    line-height: 17px;
}

.vsK1fKu8GYkRlcoudhIh .jaTHVmG4yPmCMGNQaqic svg {
    margin-right: 8px;
}

.vsK1fKu8GYkRlcoudhIh .lXitMkUNrxq6Y3RWLqKg {
    position: absolute;
    top: 34px;
    left: 11px;
    z-index: 99999999;
}

.vsK1fKu8GYkRlcoudhIh .lXitMkUNrxq6Y3RWLqKg input {
    width: 18px;
    height: 18px;
}

.NlPS3pzpp0kyiw7u3qbU {
    width: 200px;
    height: 36px;
    background: #ff8f00;
    border-radius: 8px 8px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.NlPS3pzpp0kyiw7u3qbU>div {
    margin-right: 15px;
}

.NlPS3pzpp0kyiw7u3qbU button {
    background: #ff8f00;
    color: #ffffff;
}




.accordion-menu {
    width: 100%;
    direction: rtl;
}

.accordion-item {
    font-weight: 500;
}

.accordion-header:hover {
    background-color: #f9f9f9;
    color: var(--primary-blue);
}

.accordion-header.active {
    background-color: #f1f8ff;
    color: var(--primary-blue);
}

.accordion-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background-color: #fafafa;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.accordion-content.show {
    display: block;
}

.accordion-link {
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    position: relative;
}

.accordion-link:last-child {
    border-bottom: none;
}

.accordion-link:hover {
    background-color: white;
    color: var(--primary-blue);
    padding-right: 35px;
}

.accordion-link:before {
    content: "›";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.accordion-link:hover:before {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* تنسيق خاص للأجهزة المحمولة */
/* تنسيق خاص للأجهزة الكبيرة */
@media (min-width: 769px) {
    .accordion-menu {
        width: 280px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .accordion-item:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .accordion-item:last-child {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}

/* إخفاء القائمة المنسدلة على الهاتف وإظهارها على الكمبيوتر */
@media (max-width: 768px) {
    .dropdown {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .dropdown {
        display: inline-block !important;
    }
}

/* إخفاء الأكورديون على الكمبيوتر وإظهاره على الهاتف */
@media (max-width: 768px) {
    .accordion-menu {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .accordion-menu {
        display: none !important;
    }
}



.slider-container .slide {
    direction: rtl;
}

.slider-controls {
    direction: rtl;
}

.dropdown-menu {
    position: absolute;
    background-color: white;
    min-width: 320px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    display: none;
    right: 0;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.website-name {
    font-weight: bold;
    color: #2c3e50;
}

.website-url {
    font-size: 12px;
    color: #7f8c8d;
    display: block;
    margin-top: 3px;
}

.category-title {
    padding: 8px 20px;
    background-color: #f1f8ff;
    font-weight: bold;
    color: #2980b9;
    margin-top: 5px;
    border-right: 3px solid #3498db;
}



/* Graduates Section Styles */
.graduates {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.graduates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.graduate-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.graduate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.graduate-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.graduate-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.graduate-content {
    padding: 25px;
    direction: rtl;
}

.graduate-name {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.graduate-degree {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.graduate-university {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 14px;
}

.graduate-achievement {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.graduate-year {
    display: inline-block;
    background-color: var(--light-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .graduates-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .graduate-image {
        height: 180px;
    }

    .graduate-image img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .graduates-grid {
        grid-template-columns: 1fr;
    }
}



/* أنماط التحقق */
.form-group.is-invalid .form-control,
.form-group.is-invalid select {
    border-color: #e74c3c !important;
}

.form-group.is-invalid .invalid-feedback {
    display: block !important;
}

.invalid-feedback {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* تحسين الأنماط الحالية */
.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(25, 109, 145, 0.1);
}


