/* بصائر المستقبل - CSS الرئيسي */

:root {
    --primary-color: #992242;
    --secondary-color: #de3441;
    --accent-color: #b7b9bb;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.6;
    color: var(--dark-color);
}

p {
    text-align: justify;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 0px;
    padding-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 7rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(153, 34, 66, 0.9) 0%, rgba(222, 52, 65, 0.7) 30%, rgba(183, 185, 187, 0.6) 70%, rgba(153, 34, 66, 0.8) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide h1,
.hero-slide h2 {
    color: #000 !important;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    font-weight: 700 !important;
}

.hero-slide h1 {
    font-size: 3rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.hero-slide h2 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

/* Hero Button */
.hero-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-color: var(--primary-color);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-contact-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active,
.dot:hover {
    background-color: white;
    border-color: white;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 0;
    padding: 0;
}

/* VALUES CARDS - FIXED LAYOUT */
.values-cards-row {
    direction: ltr !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
}

.values-cards-row .col-lg-6 {
    direction: ltr !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-right: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    direction: ltr !important;
    text-align: right !important;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-card h5 {
    text-align: right !important;
    direction: ltr !important;
    margin-bottom: 1rem !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.value-card p {
    text-align: right !important;
    direction: ltr !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* FORCE VALUES CARDS LAYOUT - ULTIMATE FIX */
.about-section .values-cards-row {
    direction: ltr !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
}

.about-section .values-cards-row .col-lg-6 {
    direction: ltr !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.about-section .value-card {
    direction: ltr !important;
    text-align: right !important;
}

.about-section .value-card h5 {
    text-align: right !important;
    direction: ltr !important;
    margin-bottom: 1rem !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.about-section .value-card p {
    text-align: right !important;
    direction: ltr !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* OVERRIDE ALL BOOTSTRAP AND OTHER STYLES */
.about-section .values-cards-row .col-lg-6:nth-child(1) {
    order: 1 !important;
}

.about-section .values-cards-row .col-lg-6:nth-child(2) {
    order: 2 !important;
}

.about-section .values-cards-row .col-lg-6:nth-child(3) {
    order: 3 !important;
}

.about-section .values-cards-row .col-lg-6:nth-child(4) {
    order: 4 !important;
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
    padding: 0;
    margin: 0;
}

/* Technical Support Section - Full Width */
.services-section .row:last-child .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.services-section .row:last-child .col-lg-6 .service-card {
    width: 100% !important;
}

.services-section .row:last-child .col-lg-6 .service-card .row {
    width: 100% !important;
}

.services-section .row:last-child .col-lg-6 .service-card .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* Fix English Layout - Prevent Overflow */
[dir="ltr"] .services-section .row:last-child .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

[dir="ltr"] .services-section .row:last-child .col-lg-6 .service-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

[dir="ltr"] .services-section .row:last-child .col-lg-6 .service-card .row {
    width: 100% !important;
    margin: 0 !important;
}

[dir="ltr"] .services-section .row:last-child .col-lg-6 .service-card .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 15px !important;
}

.services-section h2,
.services-section p {
    text-align: center;
}

/* (reverted) removed extra inner-column spacing inside service cards */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.service-card h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    text-align: center;
}

.service-card .row {
    flex-grow: 1;
}

.service-card ul {
    height: 100%;
}

.service-card ul li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* LTR override: place bullets on the left of text */
[dir="ltr"] .service-card ul li {
    padding-left: 1.5rem;
    padding-right: 0;
}

[dir="ltr"] .service-card ul li::before {
    left: 0;
    right: auto;
}

/* LTR: use left border accent for service cards */
[dir="ltr"] .service-card {
    border-left: 4px solid var(--primary-color) !important;
    border-right: 0 !important;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 0;
    margin: 0;
}

.why-choose-us h5 {
    text-align: center !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.why-choose-us p {
    text-align: center !important;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.why-choose-us .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5rem 1rem;
}

.feature-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon .fs-1 {
    font-size: 3rem !important;
    line-height: 1;
}

/* Clients Section */
.clients-section {
    background-color: var(--light-color);
    padding: 0;
    margin: 0;
}

/* Remove vertical gaps between Clients and Quick Contact */
.clients-section .mb-5 { margin-bottom: 0 !important; }
.clients-section h2, .clients-section p.lead { margin-top: 0 !important; margin-bottom: 0 !important; }
.quick-contact { margin-top: 0 !important; padding-top: 0 !important; }
.quick-contact .display-5, .quick-contact .lead { margin-top: 0 !important; margin-bottom: 0 !important; }
.clients-section + .quick-contact { margin-top: 0 !important; }

.clients-section .row {
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.clients-section .col-lg-3 {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.clients-section h2,
.clients-section p {
    text-align: center;
}

.client-logo {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.client-logo img {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin-bottom: 0.5rem;
}

.client-logo img[src*="malogo.png"] {
    max-height: 150px;
}

.client-logo img[src*="mablogo.png"] {
    max-height: 150px;
}

.client-logo img[src*="lsclogo.png"] {
    max-height: 150px;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo p {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

/* Contact Section */
.quick-contact {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e9ecef 100%);
    margin-top: 100px;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Contact Page Specific */
.contact-section {
    margin-top: 100px;
    padding: 0;
}

.contact-section h1 {
    text-align: center !important;
    margin-bottom: 2rem;
}

.contact-section .lead {
    text-align: center !important;
    margin-bottom: 3rem;
}

/* Contact Info Items - Separate Icon Column */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item .icon {
    flex: 0 0 50px;
    text-align: center;
    margin-left: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item .content {
    flex: 1;
    text-align: right;
}

.contact-item .content h6 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-item .content p {
    margin: 0;
    color: var(--dark-color);
    line-height: 1.5;
}


/* Mobile: Force single column for service-card rows with col-md-6 */
@media (max-width: 768px) {
    .services-section .row:last-child .col-lg-6 .service-card .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .services-section .row:last-child .col-lg-6 .service-card .col-md-6:not(:first-child) {
        margin-top: 1rem;
    }
}
/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
}

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

/* Contact Form Styles */
.contact-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(153, 34, 66, 0.25);
}

/* Footer Styles */
.footer-company-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-company-text.mb-3 {
    align-items: flex-start;
}

.footer-company-name-ar {
    color: white !important;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    text-align: right;
}

.footer-company-name-en {
    color: white !important;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.2;
    text-align: right;
}

.footer-description {
    text-align: justify;
    line-height: 1.6;
    font-size: 0.95rem;
    color: white;
}

.list-unstyled {
    padding-right: 0px;
}

.col-lg-2 {
    padding-right: 50px;
}

.col-lg-3 {
    padding-right: 0px;
}

/* Footer specific padding */
footer .col-lg-2 {
    padding-right: 20px;
}

footer .col-lg-3 {
    padding-right: 20px;
}

/* Footer utility overrides */
footer .me-3 {
    margin-left: 0rem !important;
}

/* Footer Copyright Center */
.footer-copyright {
    text-align: center !important;
}

/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 0.5rem;
}

.logo-section {
    flex: 0 0 auto;
}

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

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

.main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.2rem;
    flex-wrap: nowrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(153, 34, 66, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(153, 34, 66, 0.15);
}

/* Language Switcher */
.language-switcher {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.lang-link {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.lang-link:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
}

.lang-link.active {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: left 0.3s ease;
}

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

.mobile-nav-content {
    background: white;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 2rem 1rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: rgba(153, 34, 66, 0.05);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(153, 34, 66, 0.15);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Stack value cards one per row on mobile */
    .values-cards-row {
        flex-direction: column !important;
    }

    .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .values-cards-row .value-card {
        margin-bottom: 1rem;
    }
    
    /* Force single column layout for values cards on mobile */
    .about-section .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Override Bootstrap grid for mobile */
    @media (max-width: 991px) {
        .values-cards-row .col-lg-6 {
            flex: 0 0 100% !important;
            max-width: 100% !important;
            width: 100% !important;
        }
    }
    .hero-section {
        height: 50vh;
        text-align: center;
    }
    
    .hero-slider {
        height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-slide h1 {
        font-size: 1.75rem !important;
        text-align: center !important;
    }
    
    .hero-slide h2 {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .slider-dots {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: auto;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .dot {
        height: 12px;
        width: 12px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin: 0 0.25rem;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    /* Mobile spacing for service cards */
    .services-section .row .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    .services-section .row .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .main-header {
        padding: 0.3rem 0;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .hero-slide {
        padding-bottom: 10rem;
    }
    
    .header-content {
        padding-top: 0.5rem;
        padding-bottom: 0.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .main-header {
        padding: 0.2rem 0;
    }
    
    .hero-section {
        height: 65vh;
    }
    
    .hero-slider {
        height: 65vh;
    }
    
    .hero-slide {
        padding-bottom: 6.5rem;
    }
    
    .header-content {
        padding-top: 0.3rem;
        padding-bottom: 0.6rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

/* Bootstrap Margin Override */
.me-3 {
    margin-left: 1rem !important;
}

/* Desktop fix: remove any left margin from .col-lg-6 on >=992px */
@media (min-width: 992px) {
    .col-lg-6 {
        margin-left: 0% !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Anchors */
section[id] {
    scroll-margin-top: 100px;
}

/* Font Awesome Icons - Ignore Cairo Font */
.fab, .fas, .far, .fa, .fa-solid, .fa-regular, .fa-brands,
i[class*="fa-"], i[class*="fas"], i[class*="far"], i[class*="fab"],
span[class*="fa-"], span[class*="fas"], span[class*="far"], span[class*="fab"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

/* Override any icon classes */
[class*="icon"], [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* ENGLISH LANGUAGE SPECIFIC STYLES */
[dir="ltr"] .values-cards-row {
    direction: ltr !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
}

[dir="ltr"] .values-cards-row .col-lg-6 {
    direction: ltr !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

[dir="ltr"] .value-card {
    direction: ltr !important;
    text-align: right !important;
    border-left: 4px solid var(--primary-color) !important;
    border-right: 0 !important;
}

[dir="ltr"] .value-card h5 {
    text-align: left !important;
    direction: ltr !important;
    margin-bottom: 1rem !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

[dir="ltr"] .value-card p {
    text-align: left !important;
    direction: ltr !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* FORCE ORDER FOR ENGLISH */
[dir="ltr"] .values-cards-row .col-lg-6:nth-child(1) {
    order: 1 !important;
}

[dir="ltr"] .values-cards-row .col-lg-6:nth-child(2) {
    order: 2 !important;
}

[dir="ltr"] .values-cards-row .col-lg-6:nth-child(3) {
    order: 3 !important;
}

[dir="ltr"] .values-cards-row .col-lg-6:nth-child(4) {
    order: 4 !important;
}

/* MOBILE RESPONSIVE - FORCE SINGLE COLUMN */
@media (max-width: 991px) {
    .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about-section .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about-section .values-cards-row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}