/* English-specific styles for alnaser website */
html[lang="en"] {
  direction: ltr;
}
body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  text-align: left;
}
.navbar, .main-header, .footer {
  direction: ltr;
  text-align: left;
}
.text-end, .text-right {
  text-align: right !important;
}
.text-start, .text-left {
  text-align: left !important;
}
/* Adjustments for buttons, forms, etc. */
.btn, .form-control {
  direction: ltr;
  text-align: left;
}
/* Add more English-specific overrides as needed */
/* إصلاح مشكلة الأعمدة في تفاصيل الخدمة عند اللغة الإنجليزية */
@media (min-width: 992px) {
  .service-detail-section .row {
    flex-direction: row-reverse !important;
  }
  .service-detail-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .service-detail-section .col-lg-6.bg-white {
    align-items: flex-start;
    text-align: left;
  }
} 