/* ==========================================================================
   FADAHOSTING ARABIC / RTL STYLESHEET
   Comprehensive audit fixes for layout, spacing, and mobile responsiveness.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Typography & Global Resets
   -------------------------------------------------------------------------- */
html[dir="rtl"] body {
    text-align: right;
    direction: rtl;
    font-family: 'Cairo', 'Inter', sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .h1,
html[dir="rtl"] .h2,
html[dir="rtl"] .h3,
html[dir="rtl"] .h4,
html[dir="rtl"] .h5,
html[dir="rtl"] .h6 {
    font-family: 'Cairo', sans-serif;
    letter-spacing: normal;
}

/* Force alignments */
html[dir="rtl"] .text-start {
    text-align: right !important;
}

html[dir="rtl"] .text-end {
    text-align: left !important;
}

/* --------------------------------------------------------------------------
   2. Header & Navigation (Desktop) - RTL Mirror of English Layout
   -------------------------------------------------------------------------- */

html[dir="rtl"] .header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

html[dir="rtl"] .header-logo {
    margin-right: 0;
    margin-left: 0;
    flex-shrink: 0;
    order: 1;
}

html[dir="rtl"] .header-nav {
    flex: 0 1 auto !important;
    max-width: 700px;
    display: flex;
    justify-content: center;
    order: 2;
}

html[dir="rtl"] .header-nav-link>ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

html[dir="rtl"] .header-nav-link>ul>li {
    direction: rtl;
}

html[dir="rtl"] .header-right-content {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: auto;
    order: 3;
}

html[dir="rtl"] .header-right-content ul {
    display: flex;
    align-items: center;
}

html[dir="rtl"] .header-right-content ul li+li {
    margin-left: 0;
    margin-right: 24px;
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .nav-link i {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .nav-item:hover .nav-link i {
    transform: rotate(-180deg);
}

html[dir="rtl"] #pricing-tab {
    padding: 0;
}

html[dir="rtl"] #pricing-tab .nav-link i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .mega-menu-acme {
    text-align: right;
}

html[dir="rtl"] .mega-menu-acme:not(.mega-menu-sm) {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(15px);
}

html[dir="rtl"] .nav-item:hover .mega-menu-acme:not(.mega-menu-sm) {
    transform: translateX(-50%) translateY(0);
}

html[dir="rtl"] .mega-menu-sm {
    left: auto !important;
    right: 0 !important;
}

html[dir="rtl"] .mega-menu-grid {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mega-card-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .mega-content {
    text-align: right;
}

html[dir="rtl"] .mega-col-premium {
    border-left: none;
    border-right: 1px solid #f3f4f6;
}

html[dir="rtl"] .mega-kicker {
    padding-left: 0;
    padding-right: 4px;
}

html[dir="rtl"] .mega-bottom-bar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mega-bottom-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .help-btn .dropdown-menu {
    left: 0 !important;
    right: auto !important;
}

html[dir="rtl"] .help-info {
    text-align: right;
}

/* --------------------------------------------------------------------------
   3. Mobile Navigation & Offcanvas
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {

    /* RTL Header Grid Layout */
    html[dir="rtl"] .header-inner {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        width: 100% !important;
    }

    /* Logo - Center Column */
    html[dir="rtl"] .header-logo {
        grid-column: 2 !important;
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* Unwrap container for Grid */
    html[dir="rtl"] .header-right-content,
    html[dir="rtl"] .header-right-content ul {
        display: contents !important;
    }

    /* Menu Trigger -> Left Column (Grid Col 3 in RTL) */
    html[dir="rtl"] .header-right-content>ul>li:has(.menu-trigger) {
        grid-column: 3 !important;
        justify-self: end !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        order: unset !important;
    }

    /* Language Switcher -> Right Column (Grid Col 1 in RTL) */
    html[dir="rtl"] .header-right-content>ul>li:has(.lang-switch-btn) {
        grid-column: 1 !important;
        justify-self: start !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: unset !important;
    }

    /* Legacy Cleanup */
    html[dir="rtl"] .menu-trigger {
        margin: 0 !important;
        /* Managed by grid item */
        order: unset !important;
    }

    /* Mobile nav sidebar - slides from LEFT for RTL */
    html[dir="rtl"] .header-nav {
        right: auto !important;
        left: -320px !important;
        max-width: 320px;
        width: 85vw;
        transition: left 0.3s ease-in-out !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2) !important;
    }

    html[dir="rtl"] .header-nav.active {
        right: auto !important;
        left: 0 !important;
    }

    html[dir="rtl"] .sidebar-logo-area {
        flex-direction: row-reverse;
    }

    html[dir="rtl"] .header-nav-link>ul {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }

    /* Nav link text alignment for RTL mobile */
    html[dir="rtl"] .header-nav .nav-link {
        text-align: right;
        padding: 15px 20px 15px 60px !important;
        justify-content: flex-start !important;
    }

    html[dir="rtl"] .header-nav .nav-link i {
        position: absolute;
        left: 20px;
        right: auto;
    }

    /* FIX: Force Mega Menu to Stack Vertically on Mobile in RTL */
    html[dir="rtl"] .mega-menu-grid {
        flex-direction: column !important;
    }

    html[dir="rtl"] .mega-col,
    html[dir="rtl"] .mega-col-premium,
    html[dir="rtl"] .mega-col-balanced {
        width: 100% !important;
        border-right: none !important;
        border-left: none !important;
        border-top: 1px solid #f3f4f6;
    }

    html[dir="rtl"] .mega-bottom-bar {
        flex-direction: column !important;
        gap: 15px;
        text-align: center;
    }

    html[dir="rtl"] .mega-bottom-content {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Smaller mobile screens - 767px and below */
@media (max-width: 767px) {
    html[dir="rtl"] .header-inner {
        padding: 0 !important;
    }

    /* Logo stays absolutely centered */
    html[dir="rtl"] .header-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 10 !important;
    }

    html[dir="rtl"] .header-logo img {
        max-height: 28px !important;
    }

    /* Compact language picker on mobile */
    html[dir="rtl"] .header-right-content .lang-switch,
    html[dir="rtl"] .header-right-content .language-picker .dropdown-toggle {
        padding: 4px 8px !important;
        font-size: 11px !important;
        min-width: auto !important;
    }

    html[dir="rtl"] .header-right-content .lang-switch span:not(.flag-icon),
    html[dir="rtl"] .header-right-content .language-picker .dropdown-toggle span:not(.flag-icon) {
        display: none !important;
    }

    html[dir="rtl"] .header-right-content .lang-switch .flag-icon,
    html[dir="rtl"] .header-right-content .language-picker .dropdown-toggle .flag-icon {
        margin: 0 !important;
    }
}

/* Very small screens - 480px and below */
@media (max-width: 480px) {
    html[dir="rtl"] .header-logo img {
        max-height: 24px !important;
    }

    html[dir="rtl"] .menu-trigger {
        width: 36px !important;
        height: 36px !important;
    }

    html[dir="rtl"] .header-right-content {
        gap: 4px !important;
    }
}

html[dir="rtl"] .header-nav-link>ul>li {
    margin: 0;
}

html[dir="rtl"] .header-nav-link .nav-link {
    padding: 15px 20px;
    justify-content: space-between;
}

html[dir="rtl"] .header-nav-link .nav-link i {
    margin-right: auto;
    margin-left: 0;
}

/* --------------------------------------------------------------------------
   4. Banner & Hero Sections
   -------------------------------------------------------------------------- */
html[dir="rtl"] .banner-sec::before {
    right: auto;
    left: 20%;
}

html[dir="rtl"] .banner-content {
    text-align: right;
}

html[dir="rtl"] .banner-content ul li {
    justify-content: flex-start;
}

html[dir="rtl"] .main-banner-img,
html[dir="rtl"] .hero-img {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .feature-pricing-btn:hover {
    transform: translateX(25px);
    /* Move Right on hover */
}

html[dir="rtl"] .feature-pricing-btn svg.right-icon {
    transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   5. General Components & Cards
   -------------------------------------------------------------------------- */

/* Feature Boxes */
html[dir="rtl"] .features-box-title .icon {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .feature-box-title {
    right: auto;
    left: 24px;
}

/* Pricing Cards */
html[dir="rtl"] .pricing-card {
    text-align: right;
}

html[dir="rtl"] .pricing-features li {
    padding-left: 0;
    padding-right: 28px;
    position: relative;
}

html[dir="rtl"] .pricing-features li i,
html[dir="rtl"] .pricing-features li svg {
    left: auto;
    right: 0;
    position: absolute;
    top: 4px;
}

/* Testimonials */
html[dir="rtl"] .testimonial-box {
    text-align: right;
}

html[dir="rtl"] .testimonial-bx-content {
    text-align: right;
}

html[dir="rtl"] .testimonial-bx-info {
    text-align: right;
}

/* Swiper Buttons */
html[dir="rtl"] .swiper-button-prev,
html[dir="rtl"] .swiper-button-next {
    transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   6. Footer
   -------------------------------------------------------------------------- */
html[dir="rtl"] .footer-col {
    text-align: right;
}

html[dir="rtl"] .footer-col ul li a {
    justify-content: flex-start;
}

html[dir="rtl"] .footer-col ul li a i {
    margin-right: 0;
    margin-left: 8px;
    transform: rotate(180deg);
}

html[dir="rtl"] .newsletter-form input {
    text-align: right;
    padding-left: 50px;
    padding-right: 20px;
}

html[dir="rtl"] .newsletter-form button {
    right: auto;
    left: 5px;
    transform: rotate(180deg);
}

html[dir="rtl"] .sub-footer-links {
    justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   7. Forms & Inputs
   -------------------------------------------------------------------------- */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
}

html[dir="rtl"] .form-group label {
    text-align: right;
}

/* Abuse Form Specifics */
html[dir="rtl"] .abuse-form-box {
    text-align: right;
}

html[dir="rtl"] .kb-search-box button {
    right: auto;
    left: 8px;
}

html[dir="rtl"] .kb-search-box input {
    padding-right: 24px;
    padding-left: 60px;
}

/* --------------------------------------------------------------------------
   8. Utility Overrides (Bootstrap Fixes)
   -------------------------------------------------------------------------- */
html[dir="rtl"] .ml-1 {
    margin-left: 0 !important;
    margin-right: 0.25rem !important;
}

html[dir="rtl"] .ml-2 {
    margin-left: 0 !important;
    margin-right: 0.5rem !important;
}

html[dir="rtl"] .ml-3 {
    margin-left: 0 !important;
    margin-right: 1rem !important;
}

html[dir="rtl"] .ml-4 {
    margin-left: 0 !important;
    margin-right: 1.5rem !important;
}

html[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

html[dir="rtl"] .mr-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}

html[dir="rtl"] .mr-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

html[dir="rtl"] .mr-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

html[dir="rtl"] .mr-4 {
    margin-right: 0 !important;
    margin-left: 1.5rem !important;
}

html[dir="rtl"] .mr-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

html[dir="rtl"] .pl-3 {
    padding-left: 0 !important;
    padding-right: 1rem !important;
}

html[dir="rtl"] .pr-3 {
    padding-right: 0 !important;
    padding-left: 1rem !important;
}

html[dir="rtl"] .pl-4 {
    padding-left: 0 !important;
    padding-right: 1.5rem !important;
}

html[dir="rtl"] .pr-4 {
    padding-right: 0 !important;
    padding-left: 1.5rem !important;
}

/* --------------------------------------------------------------------------
   9. Blog & Section Headers
   -------------------------------------------------------------------------- */
html[dir="rtl"] .blog-card-content {
    text-align: right;
}

html[dir="rtl"] .read-more-link svg {
    margin-left: 0;
    margin-right: 5px;
    transform: rotate(180deg);
}

html[dir="rtl"] .section-header.text-center {
    /* If it's centered, keep it centered. If not: */
    /* text-align: right; */
}

/* Support Section */
html[dir="rtl"] .support-content {
    text-align: right;
}

/* --------------------------------------------------------------------------
   10. Footer Promo & Button Fixes
   -------------------------------------------------------------------------- */
html[dir="rtl"] .btn-promo {
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: row;
    justify-content: center;
}

html[dir="rtl"] .btn-promo i {
    margin-right: 8px;
    margin-left: 0;
    transform: rotate(180deg);
}

html[dir="rtl"] .promo-right {
    text-align: left;
}

/* --------------------------------------------------------------------------
   11. Critical Footer Padding & Alignment Fixes
   -------------------------------------------------------------------------- */
/* Enforce Container Padding in Footer to prevent edge touching */
html[dir="rtl"] footer .container,
html[dir="rtl"] .footer-new .container,
html[dir="rtl"] .footer-main .container {
    padding-left: var(--container-padding, 15px);
    padding-right: var(--container-padding, 15px);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Footer Header RTL - consolidated below in section 11 */

/* Tablet/Mobile Footer Adjustments */
@media (max-width: 991px) {
    html[dir="rtl"] .footer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    html[dir="rtl"] .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    html[dir="rtl"] .footer-social {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   11. Footer Container & Spacing Fixes
   -------------------------------------------------------------------------- */

/* Ensure footer container has proper padding on RTL */
html[dir="rtl"] .footer-new .container {
    padding-inline: 15px;
    /* Match Bootstrap container padding */
}

html[dir="rtl"] .footer-main {
    padding-inline: 15px;
}

/* Footer Header - Logo and Social - PROPER RTL FIX */
html[dir="rtl"] .footer-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding-inline: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .footer-logo {
    order: 2 !important;
    /* Move logo to the right in RTL */
    margin: 0 !important;
}

html[dir="rtl"] .footer-social {
    order: 1 !important;
    /* Move social icons to the left in RTL */
    display: flex !important;
    flex-direction: row-reverse !important;
    /* Reverse icon order for RTL */
    gap: 12px;
    margin: 0 !important;
}

html[dir="rtl"] .footer-social a {
    margin: 0 !important;
}

/* Footer Grid Columns */
html[dir="rtl"] .footer-grid {
    direction: rtl;
    text-align: right;
}

/* Sub Footer */
html[dir="rtl"] .sub-footer .container {
    padding-inline: 15px;
}

html[dir="rtl"] .sub-footer-links {
    flex-direction: row-reverse;
    justify-content: center;
}

/* Bottom Footer */
html[dir="rtl"] .footer-bottom-new .container {
    padding-inline: 15px;
}

html[dir="rtl"] .footer-bottom-inner {
    flex-direction: row-reverse;
}

/* Promo Section Container */
html[dir="rtl"] .footer-promo-full .container {
    padding-inline: 15px;
}

html[dir="rtl"] .footer-promo-content {
    flex-direction: row-reverse;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    html[dir="rtl"] .footer-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    html[dir="rtl"] .footer-social {
        flex-direction: row;
        justify-content: center;
    }

    html[dir="rtl"] .footer-promo-content {
        flex-direction: column;
        text-align: center;
    }

    html[dir="rtl"] .promo-left,
    html[dir="rtl"] .promo-right {
        text-align: center;
    }
}

@media (max-width: 767px) {
    html[dir="rtl"] .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    html[dir="rtl"] .sub-footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   12. Blog Page RTL Fixes
   -------------------------------------------------------------------------- */

/* Blog Categories RTL */
html[dir="rtl"] .blog-categories {
    direction: rtl;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

html[dir="rtl"] .blog-cat-btn {
    direction: rtl;
}

/* Blog Cards RTL */
html[dir="rtl"] .blog-card {
    text-align: right;
}

html[dir="rtl"] .blog-card-content {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .blog-date {
    direction: rtl;
}

html[dir="rtl"] .blog-category-badge {
    left: auto;
    right: 16px;
}

/* Read More Link RTL */
html[dir="rtl"] .read-more-link {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
}

html[dir="rtl"] .read-more-link svg {
    transform: rotate(180deg);
}

/* Blog Grid RTL */
html[dir="rtl"] .blog-grid,
html[dir="rtl"] .row[dir="rtl"] {
    direction: rtl;
}

/* Blog Article Body RTL */
html[dir="rtl"] .blog-article-body {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .blog-article-body h2 {
    flex-direction: row-reverse;
}

html[dir="rtl"] .blog-article-body h3 {
    border-left: none;
    border-right: 5px solid var(--color-primary);
    padding-right: 24px;
    padding-left: 14px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(270deg, rgba(0, 177, 154, 0.08) 0%, transparent 100%);
}

html[dir="rtl"] .blog-article-body ul li {
    padding-left: 0;
    padding-right: 50px;
}

html[dir="rtl"] .blog-article-body ul li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .blog-article-body ul li::after {
    left: auto;
    right: 8px;
}

html[dir="rtl"] .blog-article-body ol li {
    padding-left: 0;
    padding-right: 60px;
}

html[dir="rtl"] .blog-article-body ol li::before {
    left: auto;
    right: 0;
}

/* Blog Meta RTL */
html[dir="rtl"] .blog-breadcrumb {
    flex-direction: row-reverse;
}

html[dir="rtl"] .blog-author-box {
    flex-direction: row-reverse;
}

html[dir="rtl"] .blog-author-info {
    text-align: right;
}

/* Blog Related Cards RTL */
html[dir="rtl"] .blog-related-body {
    text-align: right;
}

html[dir="rtl"] .blog-related-cat {
    left: auto;
    right: 18px;
}

html[dir="rtl"] .blog-related-link {
    flex-direction: row-reverse;
}

/* Blog CTA Box RTL */
html[dir="rtl"] .blog-cta-box {
    flex-direction: row-reverse;
}

html[dir="rtl"] .blog-cta-content {
    text-align: right;
}

/* Blog Share RTL */
html[dir="rtl"] .blog-share-section {
    flex-direction: row-reverse;
}

/* --------------------------------------------------------------------------
   13. Mobile Fixes (Audit Jan 2026)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    html[dir="rtl"] .header-nav {
        right: auto !important;
        left: -320px !important;
        transition: left 0.3s ease-in-out !important;
    }

    html[dir="rtl"] .header-nav.active {
        right: auto !important;
        left: 0 !important;
    }
}

@media (max-width: 767px) {
    html[dir="rtl"] .banner-content ul {
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px;
    }

    html[dir="rtl"] .banner-content ul li {
        width: 100% !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    html[dir="rtl"] .banner-content .theme-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    html[dir="rtl"] .banner-sec {
        padding: 50px 0 40px !important;
    }

    html[dir="rtl"] .row>* {
        width: 100% !important;
        /* Force full width for columns on mobile */
        max-width: 100% !important;
    }

    /* Fix Hero Buttons Stacking in RTL */
    html[dir="rtl"] .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    html[dir="rtl"] .hero-buttons a {
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }
}

/* Accordion RTL Fixes */
html[dir="rtl"] .accordion-button {
    text-align: right;
    direction: rtl;
    padding: 22px 24px 22px 70px !important;
}

html[dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
    position: absolute;
    left: 24px;
    right: auto;
}

/* Footer Mobile Fixes for RTL */
@media (max-width: 580px) {
    html[dir="rtl"] .footer-bx {
        width: 100% !important;
        text-align: center;
    }
}

/* Force Hero Buttons Vertical on Mobile in RTL - Added at end for safety */
@media (max-width: 768px) {
    html[dir="rtl"] .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

    html[dir="rtl"] .hero-buttons a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    /* Fix Domain Search Overflow on Mobile */
    html[dir="rtl"] .domain-search-box-hero {
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html[dir="rtl"] .domain-input-wrap,
    html[dir="rtl"] .form-control {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    html[dir="rtl"] .hero-stats {
        flex-wrap: wrap !important;
        width: 100% !important;
        gap: 15px !important;
        justify-content: center !important;
    }

    html[dir="rtl"] .hero-stats .stat-item {
        width: 45% !important;
        /* 2 items per row */
    }

    /* Fix Marquee Overflow */
    html[dir="rtl"] .benefits-marquee {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}