/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #005c99;
  --secondary-color: #00a2d3;
  --text-dark: #343a40;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --border-radius: 0.3rem;
  --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
}
.loader-container {
  text-align: center;
}
.loader-logo {
  max-width: 150px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--bg-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px auto;
}
#preloader p {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-weight: 500;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}
#header.header-scrolled {
  background: var(--bg-white);
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.navbar-brand img {
  margin-right: 10px;
  max-height: 45px;
}
.navbar-brand span {
  font-weight: 600;
  color: var(--primary-color);
}
.navbar-toggler {
  border: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav .nav-link {
  padding: 0.6rem 1rem;
  color: var(--text-light);
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: 0.3s;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}
.dropdown-menu {
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    box-shadow: var(--box-shadow);
}
.dropdown-item {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-light);
}
.dropdown-item:hover, .dropdown-item:focus {
    color: var(--primary-color);
    background-color: #e9f5ff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(rgba(0, 92, 153, 0.05), rgba(0, 92, 153, 0.05)), url('../img/hero-background.jpg') center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px 0;
}
#hero h1 {
  margin: 0 0 15px 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}
#hero h2 {
  color: var(--text-dark);
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 400;
}
.btn-get-started, .btn-learn-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  text-align: center;
}
.btn-get-started {
  background: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
}
.btn-get-started:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--bg-white);
}
.btn-learn-more {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-learn-more:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}
.btn-learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.btn-learn-more:hover i {
    transform: translateX(5px);
}
#hero .hero-img {
  text-align: center;
}
#hero .hero-img img {
  max-width: 100%;
  border-radius: var(--border-radius);
}
.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}
@media (max-width: 991px) {
  #hero { min-height: auto; text-align: center; padding: 80px 0 40px 0;}
  #hero h1 { font-size: 2rem; }
  #hero h2 { font-size: 1.2rem; }
  #hero .hero-img { text-align: center; margin-top: 40px; }
  .btn-get-started, .btn-learn-more { width: 100%; margin-bottom: 10px;}
  .btn-learn-more { margin-left: 0 !important; }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-padding {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 50px;
}
.section-title .subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}
.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-title p.lead {
    color: var(--text-light);
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content ul.expertise-list {
  padding-left: 0;
}
.about .content ul.expertise-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
}
.about .content ul.expertise-list i {
  font-size: 1.1rem;
  margin-right: 10px;
  line-height: 1.5;
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Strengths Section
--------------------------------------------------------------*/
.strengths .strength-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.strengths .strength-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.strengths .strength-item .icon {
  margin-bottom: 20px;
}
.strengths .strength-item .icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: 0.3s;
}
.strengths .strength-item:hover .icon i {
    color: var(--secondary-color);
}
.strengths .strength-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.strengths .strength-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}
.services .service-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.services .service-card .service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}
.services .service-card:hover .service-icon {
    color: var(--secondary-color);
}
.services .service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.services .service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose {
    background-color: var(--bg-white);
}
.why-choose .why-choose-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
}
.why-choose .why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.why-choose .why-choose-item .icon {
  margin-bottom: 20px;
}
.why-choose .why-choose-item .icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: 0.3s;
}
.why-choose .why-choose-item:hover .icon i {
    color: var(--secondary-color);
}
.why-choose .why-choose-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.why-choose .why-choose-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .project-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.projects .project-card img {
  width: 100%;
  aspect-ratio: 3 / 2; 
  object-fit: cover;   
  transition: transform 0.5s ease;
}
.projects .project-card:hover img {
  transform: scale(1.05);
}
.projects .project-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.projects .project-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.projects .project-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  flex-grow: 1;
}
.projects .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 35px;
    font-weight: 500;
}
.projects .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Carrier Section
--------------------------------------------------------------*/
.carrier {
  background: linear-gradient(rgba(0, 92, 153, 0.03), rgba(0, 92, 153, 0.03)), var(--bg-white);
}
.carrier-job-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.carrier-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.carrier-job-card .job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.carrier-job-card .job-meta {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.carrier-job-card .job-meta span {
    margin-right: 15px;
    display: inline-block; 
    margin-bottom: 5px;
}
.carrier-job-card .job-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}
.carrier-job-card .job-description-short {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    flex-grow: 1; 
}
.carrier-job-card .job-details-toggle {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.carrier-job-card .job-details-toggle h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 5px;
}
.carrier-job-card .job-details-toggle ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}
.carrier-job-card .job-details-toggle ul li {
    margin-bottom: 5px;
}
.carrier-job-card .job-card-actions {
    margin-top: auto; 
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}
.carrier-job-card .job-card-actions .btn {
    font-size: 0.85rem;
    padding: 8px 15px;
    margin-top: 5px; 
}
.carrier-job-card .job-card-actions .apply-now {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}
.carrier-job-card .job-card-actions .apply-now:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.carrier-job-card .job-card-actions .view-details {
    border-color: var(--text-light);
    color: var(--text-light);
}
.carrier-job-card .job-card-actions .view-details:hover {
    background-color: var(--text-light);
    color: var(--bg-white);
}
#no-jobs-message p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.carrier .carrier-cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    min-width: 220px;
}
.carrier .carrier-cta-buttons .btn-outline-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}
.carrier .carrier-cta-buttons .btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}


/*--------------------------------------------------------------
# Collaboration Models Section
--------------------------------------------------------------*/
.collaboration .collab-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white); 
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}
.collaboration .collab-item:hover {
    transform: translateY(-5px);
}
.collaboration .collab-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.collaboration .collab-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.collaboration .collab-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    flex-grow: 1;
}
.collaboration .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 35px;
    font-weight: 500;
}
.collaboration .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact.section-padding {
    background-color: var(--bg-light);
}
.contact .contact-info-box {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}
.contact .contact-info-box h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact .contact-info-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
}
.contact .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact .info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: #e9f5ff; 
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact .info-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--text-dark);
}
.contact .info-item p, .contact .info-item p a {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.contact .info-item p a:hover {
    color: var(--primary-color);
}

.contact .php-email-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}
.contact .php-email-form .form-control {
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  padding: 10px 15px;
}
.contact .php-email-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 92, 153, 0.25);
}
.contact .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 12px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 500;
}
.contact .php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
}
.contact .php-email-form .loading { display: none; text-align: center; margin-bottom: 15px; }
.contact .php-email-form .error-message,
.contact .php-email-form .recaptcha-error-message {
    display: none;
    color: red;
    background: #fde0e0;
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
}
.contact .php-email-form .sent-message { display: none; color: green; background: #e7f5e7; padding: 10px; border-radius: var(--border-radius); margin-bottom: 15px; text-align: center;}
.g-recaptcha.shake-animation { /* Simple shake animation for reCAPTCHA error */
    animation: shake 0.5s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: var(--text-dark);
  color: #adb5bd; 
  font-size: 0.9rem;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background-color: #2c3034; 
}
#footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 8px;
}
#footer .footer-info .logo span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bg-white);
  font-family: var(--font-primary);
}
#footer .footer-info p {
  font-size: 0.9rem;
  margin-top: 10px;
  font-family: var(--font-secondary);
}
#footer .social-links a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}
#footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-white);
  position: relative;
  padding-bottom: 12px;
  font-family: var(--font-primary);
}
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links ul li:not(:last-child) {
  padding-bottom: 10px;
}
#footer .footer-links ul a {
  color: #adb5bd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-links ul a:hover {
  color: var(--secondary-color);
}
#footer .footer-contact p {
  margin-bottom: 5px;
  line-height: 1.8;
}
#footer .footer-contact strong {
    color: var(--bg-white);
}
#footer .container > .copyright { 
  text-align: center;
  padding-top: 30px;
}
#footer .container > .credits { 
  padding-top: 5px;
  text-align: center;
  font-size: 0.8rem;
  color: #adb5bd;
}

/*--------------------------------------------------------------
# Back to top & WhatsApp
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top i {
  font-size: 1.5rem;
  color: #fff;
}
.back-to-top:hover {
  background: var(--secondary-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 70px; 
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 2rem;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    bottom: 65px;
  }
}

/*--------------------------------------------------------------
# RTL Adjustments
--------------------------------------------------------------*/
html[dir="rtl"] {
  text-align: right;
}
html[dir="rtl"] .navbar-nav { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .navbar-nav .nav-link.active::before { left: auto; right: 1rem; }
html[dir="rtl"] .btn-learn-more i { margin-left: 0; margin-right: 5px; }
html[dir="rtl"] .btn-learn-more:hover i { transform: translateX(-5px); }
html[dir="rtl"] .section-title h2::after { left: auto; right: 0; }
html[dir="rtl"] .section-title.text-center h2::after { right: 50%; transform: translateX(50%); }
html[dir="rtl"] .about .content ul.expertise-list i { margin-right: 0; margin-left: 10px; }
html[dir="rtl"] .services .service-card .read-more i { margin-left: 0; margin-right: 5px; }
html[dir="rtl"] .services .service-card .read-more:hover i { transform: translateX(-5px); }
html[dir="rtl"] .projects .project-info .details-link i { margin-left: 0; margin-right: 3px; }
html[dir="rtl"] .contact .info-item i { margin-right: 0; margin-left: 15px; }
html[dir="rtl"] .footer .social-links a { margin-right: 0; margin-left: 8px; }
html[dir="rtl"] .back-to-top { right: auto; left: 15px; }
html[dir="rtl"] .whatsapp-float { right: auto; left: 15px; }
html[dir="rtl"] .navbar-brand img { margin-right: 0; margin-left: 10px;}
html[dir="rtl"] .carrier-job-card .job-meta i { margin-right: 0; margin-left: 5px;}
html[dir="rtl"] .carrier-job-card .job-details-toggle ul { padding-left: 0; padding-right: 20px;}