 /* ===== Variables ===== */
:root {
    --primary-color: #031360;
    --secondary-color: #0b56e2;
    --accent-color: #469ffc;
    --light-color: #f6fbfc;
    --dark-color: #090979;
    --text-color: #333333;
    --text-light: #f6f7f8;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-bg: #0a0e27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-muted: rgba(255, 255, 255, 0.6);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-primary: 0 20px 60px rgba(102, 126, 234, 0.3);
            --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.2);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    padding-top: 140px; /* Space for fixed header */
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Header Styles ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info a {
    display: inline-block;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-left: 5px;
}

.social-links a:hover {
    background: var(--secondary-color);
}

/* ===== Navigation ===== */
.main-navigation {
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    padding: 10px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--primary-color);
    padding: 60px 20px 20px;
    z-index: 1100;
    transition: var(--transition);
}

.mobile-navigation.active {
    left: 0;
}

.mobile-navigation ul {
    list-style: none;
}

.mobile-navigation li {
    margin-bottom: 15px;
}

.mobile-navigation a {
    color: var(--white);
    display: block;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-navigation a:hover {
    color: var(--accent-color);
}

.close-mobile-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Main Content ===== */
.main-content {
    padding: 30px 0;
    display: fixed;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .header-contacts {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .contact-info a {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .header-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
}

/* === صفحة الخدمات (services.php) === */
.page-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.page-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.page-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* === نموذج التسجيل (registration_form.php) === */
.registration-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.registration-section h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(70, 159, 252, 0.2);
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* === صفحة التدريب (training.php) === */
.training-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-info {
    padding: 20px;
}

.course-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.course-info p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.course-meta i {
    margin-right: 5px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* === صفحة التحقق (verify.php) === */
.verify-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.verify-container h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.verify-container p {
    margin-bottom: 30px;
    color: var(--text-color);
}

.alert {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* === صفحة تسجيل الدخول (login.php) === */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-color);
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.login-form h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

/* === أنماط عامة للأزرار === */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary {
    background: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
}

/* === تأثيرات الحركة === */
.animate__animated {
    animation-duration: 1s;
}

/* === استجابة للهواتف === */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .registration-form,
    .verify-container,
    .login-form {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
}
/* === صفحة نجاح التسجيل === */
.success-section {
    padding: 80px 0;
    background-color: var(--light-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.success-card h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.success-details {
    margin: 30px 0;
    text-align: left;
}

.success-details h3 {
    color: var(--secondary-color);
    margin: 15px 0 25px;
    font-size: 1.5rem;
    text-align: center;
}

.registration-info {
    background: rgba(70, 159, 252, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .success-card {
        padding: 30px 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-item i {
        margin-bottom: 5px;
    }
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .mobile-navigation {
    display: none !important;
  }
}
.menu-toggle {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #469ffc;
  font-size: 18px;
  align-items: center;
  gap: 8px;
}

.menu-toggle:hover {
  background-color: #ffffff22;
  transform: scale(1.05);
  border-color: #ccc;
}
.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* يخليها تتجمع تحت بعض بالشاشات الصغيرة */
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color); /* يستعمل اللون الرئيسي للموقع */
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
}
/* Background Animation */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1d47 50%, #2a2d67 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 20px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.1"/><stop offset="100%" stop-color="%23667eea" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23g)"/><circle cx="80" cy="40" r="1.5" fill="url(%23g)"/><circle cx="40" cy="80" r="1" fill="url(%23g)"/><circle cx="90" cy="90" r="0.5" fill="url(%23g)"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

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

        .container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 100vh;
            padding: 40px 0;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #a8a8ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            position: relative;
        }

        .highlight {
            position: relative;
            background: var(--primary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 900;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 2px;
            animation: expand 1.5s ease-out 0.5s both;
        }

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

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            white-space: nowrap;
        }

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

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

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 25px 80px rgba(102, 126, 234, 0.4);
        }

        .btn-outline {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 2px solid var(--glass-border);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .btn-outline:hover {
            transform: translateY(-3px);
            border-color: rgba(102, 126, 234, 0.5);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: var(--accent-gradient);
            border-radius: 20px;
            opacity: 0.1;
            filter: blur(20px);
            animation: pulse 3s ease-in-out infinite;
        }

        .image-container {
            position: relative;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.6s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: var(--accent-gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: floatUpDown 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 40px;
            height: 40px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .btns {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 25px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            flex: 1;
            justify-content: center;
            min-width: 120px;
        }

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

        .btns:hover::before {
            left: 100%;
        }

        .btn-sm {
            padding: 10px 16px;
            font-size: 0.85rem;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            transform: translateY(-2px);
            border-color: rgba(102, 126, 234, 0.5);
            background: rgba(255, 255, 255, 0.05);
            color: #4facfe;
        }
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.2; transform: scale(1.05); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 20px 0;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                justify-content: center;
            }

        }
.btn {
                padding: 14px 24px;
                font-size: 1rem;
            }
        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
.btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }
        /* RTL Support */
        [dir="rtl"] .hero-container {
            text-align: right;
        }

        [dir="rtl"] .hero-buttons {
            justify-content: flex-start;
        }

        [dir="rtl"] .btn i {
            margin-right: 0;
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            [dir="rtl"] .hero-container {
                text-align: center;
            }

            [dir="rtl"] .hero-buttons {
                justify-content: center;
            }
        }