﻿/* ===== المتغيرات ===== */
:root {
    --primary: #151F6D;
    --primary-light: #485CC7;
    --accent: #10988d;
    --accent-hover: #0e877f;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --radius: 0.5rem;
}

/* ===== إعدادات عامة ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", sans-serif;
    direction: rtl;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #f5f7fa;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ===== تنسيقات الصفحة ===== */
.page-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.background-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(135deg, #f0f0f0, #f0f0f0 1px, transparent 1px, transparent 10px);
    background-size: 20px 20px;
    z-index: 0;
}

.main-content {
    flex: 1;
    padding: 1.5rem;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== الأزرار ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

    .btn-primary:hover {
        background-color: var(--accent-hover);
    }

.btn-secondary {
    background-color: var(--gray-300);
    color: var(--gray-800);
}

    .btn-secondary:hover {
        background-color: var(--gray-400);
    }

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

    .btn-white:hover {
        background-color: var(--gray-50);
    }

.icon-left {
    margin-right: 0.5rem;
}

/* ===== الهيدر ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.title-underline {
    height: 0.25rem;
    width: 10rem;
    background-color: var(--accent);
    margin-top: 0.75rem;
    margin-right: auto;
}

.logo-container {
    margin-top: 1.5rem;
    margin-left: 1.5rem;
}

.logo {
    width: 130px;
    height: auto;
}

/* ===== قسم الترحيب ===== */
.hero-section {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 5rem;
    background: linear-gradient(to left, var(--primary), #1e40af);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: var(--white);
}

.hero-text {
    text-align: right;
    margin-bottom: 2rem;
}

    .hero-text h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: var(--accent);
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        color: #6084a4;
        font-size: 1.125rem;
        max-width: 36rem;
        margin-bottom: 2rem;
    }

.hero-cta {
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
/*    background-color: rgba(255, 255, 255, 0.2);
*/    /*backdrop-filter: blur(8px);*/
    padding: 1.5rem;
/*    border-radius: 0.5rem;
*/    /*box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);*/
}

.hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background-color: var(--accent);
}

/* ===== قسم الوصول السريع ===== */
.quick-access-section {
    margin-bottom: 5rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #eff6ff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    color: var(--primary);
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.section-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.quick-access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    height: 100%;
    cursor: pointer;
}

    .quick-access-card:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: #fcd34d;
    }

.card-icon {
    width: 5rem;
    height: 5rem;
    background-color: #eff6ff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    color: var(--primary-light);
}

.quick-access-card:hover .card-icon {
    background-color: #fef3c7;
    color: #E56A54;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.quick-access-card:hover .card-title {
    color: #f59e0b;
}

.card-description {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== قسم المسؤوليات ===== */
.responsibilities-section {
    margin-bottom: 5rem;
    padding: 4rem 0;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(30px);
    animation: blob 7s infinite alternate;
}

.blob1 {
    top: 10%;
    left: 10%;
    width: 16rem;
    height: 16rem;
    background-color: #bfdbfe;
}

.blob2 {
    bottom: 20%;
    right: 20%;
    width: 20rem;
    height: 20rem;
    background-color: #93c5fd;
    animation-delay: 2s;
}

.blob3 {
    top: 40%;
    right: 10%;
    width: 10rem;
    height: 10rem;
    background-color: #60a5fa;
    animation-delay: 4s;
}

.blob4 {
    bottom: -10%;
    left: 33%;
    width: 15rem;
    height: 15rem;
    background-color: #3b82f6;
    animation-delay: 3s;
}

.section-content {
    position: relative;
    z-index: 10;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.rotating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.7s ease-in-out;
    color: var(--white);
    animation: rotate 7s infinite alternate;
}

.section-header-center h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-underline {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--primary);
    margin: 0 auto 1.5rem;
}

.section-header-center p {
    color: var(--primary-light);
    max-width: 36rem;
    margin: 0 auto;
}

.responsibilities-slider {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.slider-button {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    color: var(--primary-light);
}

    .slider-button:hover {
        background-color: #eff6ff;
        transform: scale(1.1);
    }

    .slider-button:active {
        transform: scale(0.95);
    }

.prev-button {
    margin-right: 1rem;
}

.next-button {
    margin-left: 1rem;
}

.slider-container {
    flex: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.slider-card {
    flex: 0 0 100%;
    padding: 0 1rem;
}

    .slider-card .card-header {
        background: linear-gradient(to left, var(--primary), #1e40af);
        padding: 1.5rem;
        color: var(--white);
        display: flex;
        align-items: center;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

    .slider-card .card-icon {
        width: 4rem;
        height: 4rem;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        animation: pulse 2s infinite;
    }

    .slider-card h3 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .slider-card .card-body {
        background-color: var(--white);
        padding: 2rem;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

        .slider-card .card-body p {
            color: var(--gray-600);
            font-size: 1.125rem;
            line-height: 1.7;
        }

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.indicator {
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .indicator.active {
        background-color: var(--primary);
        width: 2rem;
        border-radius: 9999px;
    }

/* ===== قسم الأسئلة الشائعة ===== */
.faq-section {
    margin-bottom: 5rem;
}

.faq-container {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-header {
    background-color: var(--gray-50);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-title {
    font-weight: bold;
    color: var(--primary);
}

.toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--white);
    border-radius: 0.375rem;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s;
    color: var(--primary-light);
}

    .toggle-button:hover {
        background-color: #eff6ff;
    }

.chevron-up {
    display: none;
}

.toggle-button[aria-expanded="true"] .chevron-down {
    display: none;
}

.toggle-button[aria-expanded="true"] .chevron-up {
    display: block;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

    .faq-content.expanded {
        max-height: 2000px;
        opacity: 1;
    }

.faq-items {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    background-color: var(--gray-50);
    padding: 1rem;
    border-right: 4px solid var(--primary-light);
}

    .faq-question h4 {
        font-weight: bold;
        color: var(--primary);
    }

.faq-answer {
    padding: 1rem;
    background-color: var(--white);
}

    .faq-answer p {
        color: var(--gray-600);
    }

/* ===== قسم نموذج التسجيل ===== */
.registration-form-section {
    margin-bottom: 5rem;
}

.terms-notice {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    text-align: center;
}

.notice-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #f59e0b;
}

.terms-notice h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.terms-notice p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.hidden {
    display: none;
}

#registration-form {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(to left, var(--primary), #1e40af);
    color: var(--white);
    padding: 2rem;
}

    .form-header h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .form-header p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
    }

.form-section {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

    .form-section h4 {
        display: flex;
        align-items: center;
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

.section-number {
    width: 2rem;
    height: 2rem;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.875rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        color: var(--gray-600);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

.required {
    color: #ef4444;
}

.input-with-icon {
    position: relative;
}

    .input-with-icon svg {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-400);
    }

    .input-with-icon input,
    .input-with-icon textarea {
        width: 100%;
        padding: 0.75rem 2.5rem 0.75rem 0.75rem;
        border: 1px solid var(--gray-300);
        border-radius: 0.375rem;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s;
    }

        .input-with-icon input:focus,
        .input-with-icon textarea:focus,
        .select-wrapper select:focus {
            outline: none;
            ring: 2px;
            ring-color: var(--primary-light);
            border-color: var(--primary-light);
        }

textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

    .select-wrapper select {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--gray-300);
        border-radius: 0.375rem;
        font-family: inherit;
        font-size: 1rem;
        appearance: none;
        background-color: var(--white);
    }

.select-arrow {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-400);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
}

    .terms-checkbox input {
        width: 1.25rem;
        height: 1.25rem;
        margin-left: 0.5rem;
        margin-top: 0.25rem;
    }

.text-link {
    color: var(--primary-light);
    text-decoration: none;
    border: none;
    background: none;
    padding: 0;
    font-weight: 500;
}

    .text-link:hover {
        text-decoration: underline;
    }

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* ===== المودال ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    overflow-y: auto;
    padding: 1rem;
}

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.modal-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 48rem;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(to left, var(--primary), #1e40af);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3 {
        font-size: 1.25rem;
        font-weight: bold;
    }

.close-button {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

    .modal-body h4 {
        font-size: 1.125rem;
        font-weight: bold;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .modal-body p {
        margin-bottom: 1rem;
    }

.terms-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

    .terms-section h5 {
        font-weight: bold;
        color: var(--primary-light);
        margin-bottom: 0.5rem;
    }

.guide-section {
    display: flex;
    margin-bottom: 2rem;
}

.guide-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
    color: var(--primary-light);
}

.guide-content {
    flex: 1;
}

    .guide-content h5 {
        font-weight: bold;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .guide-content ol {
        padding-right: 1.5rem;
        margin-top: 0.5rem;
    }

    .guide-content li {
        margin-bottom: 0.5rem;
    }

.support-info {
    background-color: #eff6ff;
    padding: 1rem;
    border-radius: 0.5rem;
    border-right: 4px solid var(--primary-light);
    margin-top: 2rem;
    display: flex;
}

.support-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
    color: var(--primary-light);
}

.support-content h5 {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-footer {
    background-color: var(--gray-50);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--gray-200);
    gap:1rem;
}

    .modal-footer button {
        margin-right: 0.5rem;
    }

        .modal-footer button:last-child {
            margin-right: 0;
        }

/* ===== الرسوم المتحركة ===== */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== تجاوب الموبايل ===== */
@media (min-width: 640px) {
    .main-content {
        padding: 2.5rem;
    }

    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
    }

    .hero-text {
        width: 66.666667%;
        margin-bottom: 0;
    }

    .hero-image {
        width: 33.333333%;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-access-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-section {
    margin-bottom: 5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/*@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 2fr 1fr;
    }
}*/

.contact-info {
    padding: 2rem;
}

    .contact-info h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .contact-info > p {
        color: #4b5563;
        margin-bottom: 1.5rem;
    }

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

    .contact-icon i {
        color: #3b82f6;
    }

.contact-item h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4b5563;
}

.working-hours {
    background-color: #eff6ff;
    padding: 1rem;
    border-radius: 0.5rem;
    border-right: 4px solid #3b82f6;
}

.meeting-hours {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

    .meeting-hours h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }

.schedule-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .schedule-list li {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.meeting-cta {
    margin-top: auto;
    text-align: center;
}

    .meeting-cta p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
    }

.btn-white {
    background-color: white;
    color: #1e3a8a;
    transition: all 0.3s;
}

    .btn-white:hover {
        background-color: #f9fafb;
    }

.supplier-type-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.hidden {
    display: none;
}

.supplier-type-section .quick-access-grid {
    display: flex;
    justify-content: center; /* يخليهم في النص */
    gap: 2rem; /* مسافة بينهم */
    flex-wrap: wrap; /* عشان يكونوا مرتبّين بالشاشات الصغيرة */
    margin-top: 2rem;
    margin-bottom:5rem;
}

.back-btn-container {
    text-align: center;
    margin: 1rem 0;
}

#back-button {
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border, #ccc);
    background: #f1f5f9;
    cursor: pointer;
    transition: 0.3s;
}

    #back-button:hover {
        background: #e2e8f0;
  
       }

.fade {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
}

.fade.show {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}

.lang-switch {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: #fff;
    color: black;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

    .lang-toggle:hover {
        background: #f9fafb;
    }

    .lang-toggle span {
        margin: 0 4px;
    }
