        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@500;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #000000;
            --primary-white: #ffffff;
            --gray-900: #111111;
            --gray-800: #1a1a1a;
            --gray-700: #2d2d2d;
            --gray-600: #404040;
            --gray-500: #666666;
            --gray-400: #999999;
            --gray-300: #cccccc;
            --gray-200: #e5e5e5;
            --gray-100: #f5f5f5;
            --shadow-light: rgba(255, 255, 255, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.3);
            --light-blue: #f8f9ff;
            --light-gray: #f4f6f8;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.8) 0%, 
                    rgba(255, 255, 255, 0.8) 50%, 
                    rgba(255, 254, 254, 0.8) 100%),
                    url('/static/image/about.webp') center/cover no-repeat;             
            color: var(--gray-800);
            min-height: 100vh;
            overflow-x: hidden;
            
        }
/* 👇 علشان العناصر اللي بتستخدم auto-align تفضل وسط أو بعيدة عن الحافة */
        .auto-align {
        text-align: start;
        margin-inline: 20px; /* margin-inline = بداية ونهاية الاتجاه */
        }
        /* خلفية متحركة */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundMove 20s ease-in-out infinite alternate;
        }

        @keyframes backgroundMove {
            0% { transform: translateX(0px) translateY(0px); }
            100% { transform: translateX(-10px) translateY(-10px); }
        }

        /* شريط التنقل - دارك */
        .navbar {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(17, 17, 17, 0.9) 100%);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 10000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo {
            transition: all 0.3s ease;
            width:6rem;

        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-list li a {
            color: var(--primary-white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .nav-list li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-list li a:hover::before {
            width: 100%;
        }

        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            min-width: 120px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 0.7rem 1rem;
            color: var(--primary-white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .login-btn {
            background: transparent;
            color: var(--primary-white);
            border-color: rgba(255, 255, 255, 0.3);
            
        }

        .login-btn:hover {
            background: var(--primary-white);
            color: var(--primary-black);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .logout-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .logout-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* قائمة الهاتف المحمول */
        .nav-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-menu div {
            width: 25px;
            height: 3px;
            background: var(--primary-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .nav-menu.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .nav-menu.active .line2 {
            opacity: 0;
        }

        .nav-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* المحتوى الرئيسي */
        .main-content {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* القسم الرئيسي - دارك */
        .hero-section {
            text-align: center;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.1) 0%, 
                rgba(17, 17, 17, 0.1) 50%, 
                rgba(0, 0, 0, 0.1) 50%),
                url('/static/image/Saber-Profile.webp') center/cover no-repeat;
                
            margin:0;
            position: relative;
            overflow: hidden;
            color: var(--primary-white);
            height: 42rem;
            margin-top: -2rem;
            
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.02) 50%, 
                transparent 70%);
            animation: heroShine 8s linear infinite;
        }

        @keyframes heroShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-buttons a{
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #b5a51a, #f7eea4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-300);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            text-align: justify;
            line-height: 1.8;         /* تحسين قراءة الأسطر */
            text-justify: inter-word;
        }
        .consultation-section {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.0) 0%, 
        rgba(17, 17, 17, 0.0) 50%, 
        rgba(0, 0, 0, 0.0) 100%),
        url('/static/image/hero-bg.webp') center/cover no-repeat;    
    padding: 3rem 0;
    margin-top: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    animation: heroShine 8s linear infinite;
}

.consultation-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.consultation-subtitle {
    color: var(--gray-300);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.consultation-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.consultation-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-white), var(--gray-200));
    color: var(--primary-black);
    border-color: var(--gray-300);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--gray-100), var(--primary-white));
}

.secondary-btn {
    background: transparent;
    color: var(--primary-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

        /* قسم الخدمات - أبيض */
        .services-section {
            margin: 4rem 0;
background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(17, 17, 17, 0.8) 50%, 
                rgba(0, 0, 0, 0.8) 50%),
                url('/static/image/13.png') center/cover no-repeat;            
                padding: 4rem 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-200);
        }

        .services-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: rgb(253, 211, 44);
            text-align: center;
        }

        .services-section p {
            color: white;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .service-card {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.5) 0%, 
                rgba(17, 17, 17, 0.5) 50%, 
                rgba(0, 0, 0, 0.5) 50%);            
            border: 1px solid var(--gray-200);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--gray-300);
        }

        .service-card i {
            font-size: 3rem;
            color: rgb(253, 211, 44);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: rgb(253, 211, 44);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: white;
            text-align: center;
        }

        /* أزرار الخدمات العائمة */
        .floating-buttons {
            position: fixed;
            left: 2rem;
            bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary-white);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .consult-btn {
            background: linear-gradient(135deg, var(--gray-800), var(--primary-black));
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            cursor: pointer;
        }

        .floating-btn:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .floating-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .floating-btn:hover::before {
            transform: translateX(100%);
        }

        /* نافذة واتساب - بيضاء */
        .whatsapp-chat {
            position: fixed;
            left: 2rem;
            bottom: 150px;
            width: 300px;
            background: var(--primary-white);
            color: var(--gray-800);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transform: translateY(20px) scale(0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
        }

        .whatsapp-chat.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .chat-header {
            background: linear-gradient(135deg, var(--gray-800), var(--primary-black));
            color: var(--primary-white);
            padding: 1rem;
            border-radius: 15px 15px 0 0;
            font-weight: bold;
        }

        .chat-body {
            padding: 1.5rem;
        }

        .chat-body p {
            color: var(--gray-700);
            margin-bottom: 1rem;
        }

        .chat-body a {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .chat-body a:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* الفوتر - دارك */
        footer {
            background: linear-gradient(135deg, var(--primary-black), var(--gray-900));
            padding: 3rem 2rem 1rem;
            text-align: center;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
        }

        footer h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-white), var(--gray-300));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        footer p {
            color: var(--gray-300);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: var(--primary-white);
            color: var(--primary-black);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-white);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--primary-white);
        }

        /* التأثيرات المتحركة */
        .reveal-item {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal-item.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* تصميم متجاوب */
        @media (max-width: 1200px) {
            .navbar {
                padding: 1rem;
            }

            .nav-list {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-menu {
                display: flex;
            }

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

            .floating-buttons {
                left: 1rem;
                bottom: 1rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .whatsapp-chat {
                left: 1rem;
                width: calc(100vw - 2rem);
                max-width: 300px;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @media (max-width: 485px) {
            .about header h1 {
                font-size: 1.5rem;
            }
            .about header p {
                font-size: 1rem;
            }
            .about-section h2 {
                font-size: 1.2rem;
            }
            .about-section h2 {
                font-size: 1rem;
            }

            .logo {
            width:3rem;

        }
        .login-btn {
font-size: 10px;
        }
        .hero-title{
            font-size: 20px;
        }
        .hero-subtitle{
        font-size: 12px;

        }
        .btn{
        font-size: 14px;
        }
          .services-section h2 {
            font-size: 18px;
           
        }
        .services-section p {
            font-size: 14px;
            text-align: center;
            line-height: 1.8;         /* تحسين قراءة الأسطر */
            text-justify:inter-ideograph;
           
        }
         .service-card h3 {
            font-size: 14px;
        }
        .service-card p {
            font-size: 12px;
        }
        .service-card{
        padding: 4px;
        width: 20rem;
        margin-left: auto;
        margin-right: auto;

        }
        .partners-header h2{
            font-size: 18px;

        }
        .partners-header p{
            font-size: 14px;

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

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

        }
        .consultation-buttons{
            font-size: 14px;

        }
        .consultation-buttons a{
            padding: 4px 4px;

        }
        
            .nav-list {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-menu {
                display: flex;
            }

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

            .floating-buttons {
                left: 1rem;
                bottom: 1rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .whatsapp-chat {
                left: 1rem;
                width: calc(100vw - 2rem);
                max-width: 300px;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* تأثيرات إضافية للحركة */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 400px) {
            .logo {
            width:3rem;

        }
        .login-btn {
font-size: 10px;
        }
        .hero-title{
            font-size: 18px;
        }
        .hero-subtitle{
        font-size: 12px;

        }
        .btn{
        font-size: 14px;
        }
          .services-section h2 {
            font-size: 18px;
           
        }
        .services-section p {
            font-size: 14px;
            text-align: center;
            line-height: 1.8;         /* تحسين قراءة الأسطر */
            text-justify:inter-ideograph;
           
        }
         .service-card h3 {
            font-size: 14px;
        }
        .service-card p {
            font-size: 12px;
        }
        .service-card{
        padding: 3px;
        width: 14rem;

        }
        .partners-header h2{
            font-size: 18px;

        }
        .partners-header p{
            font-size: 14px;

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

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

        }
        .consultation-buttons{
            font-size: 14px;

        }
        .consultation-buttons a{
            padding: 4px 4px;

        }
        
            .nav-list {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-menu {
                display: flex;
            }

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

            .floating-buttons {
                left: 1rem;
                bottom: 1rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .whatsapp-chat {
                left: 1rem;
                width: calc(100vw - 2rem);
                max-width: 300px;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }



        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* تأثير الكتابة */
        .typewriter {
            overflow: hidden;
            border-left: 3px solid var(--primary-white);
            white-space: nowrap;
            animation: typewriter 4s steps(40) 1s both,
                       blinkCursor 0.8s step-end infinite;
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blinkCursor {
            50% { border-color: transparent; }
        }

        .about {
        background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(17, 17, 17, 0.2) 50%, 
        rgba(0, 0, 0, 0.2) 100%),
        url('/static/image/about.png') center/cover no-repeat;
        color: #ffffff;
    padding: 50px 20px;
    line-height: 1.8;
}

.about header {
    text-align: right;
    margin-bottom: 40px;
}

.about header h1 {
    font-size: 2.8rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.about header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #dcce0f; /* لون مميز */
    margin: 10px auto 0;
    border-radius: 2px;
}

.about header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.about-section {
    margin-bottom: 60px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(17, 17, 17, 0.5) 50%, 
        rgba(0, 0, 0, 0.5) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: 0.3s ease-in-out;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.about-section h2 {
    color: #dcce0f;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-section p, .about-section ul {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.about-section ul {
    padding-right: 20px;
}

.about-section li {
    margin-bottom: 8px;
    list-style: disc;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-card {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: #383838;
    transform: scale(1.03);
}

.value-card h3 {
    color: #dcce0f;
    margin-bottom: 10px;
}

.value-card p {
    color: #dfe6e9;
}
html[dir="rtl"], body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
html[dir="ltr"], body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

  /* لو عندك عناصر تحتاج محاذاة محددة */
  .auto-align { text-align: start; } /* start يتكيّف حسب dir */
  /* ضمان أن العناصر inline مثل buttons/inputs تظهر بشكل مناسب */
  input, textarea { direction: inherit; text-align: inherit; }

  /* 👇 لو عندك أقسام كبيرة زي hero أو header */
.hero-section, footer {
  padding-inline-start: 40px;
  padding-inline-end: 40px;
}