/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Apply Poppins font to all elements */
body,
html,
h1, h2, h3, h4, h5, h6,
p, span, a, li, div,
input, textarea, button,
.primary-font,
.secondary-font {
    font-family: 'Poppins', sans-serif !important;
}

/* Ensure proper text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Adjust letter spacing for better readability */
body {
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.5px;
}

/* Ensure LTR direction for English content */
html[lang="en"],
html[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

/* Header alignment */
#header .header-nav-top ul li,
#header .header-nav-top ul li span {
    text-align: left;
    direction: ltr;
}

#header .header-nav-main nav ul {
    text-align: left;
}

#header .header-nav-main nav ul li a {
    text-align: left;
}

/* Footer alignment */
#footer,
#footer * {
    text-align: left;
    direction: ltr;
}

#footer .footer-ribbon {
    text-align: center;
}

#footer ul.list,
#footer ul.list li,
#footer p,
#footer h5 {
    text-align: left;
}

/* Social icons - fix spacing and alignment */
#footer .social-icons {
    text-align: left;
    justify-content: flex-start;
    display: flex;
    gap: 10px;
}

#footer .social-icons li {
    margin: 0 10px 0 0 !important;
}

#footer .social-icons li:last-child {
    margin-right: 0 !important;
}

/* Useful links - icons on the right */
#footer ul.list:not(.list-icons) li {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

#footer ul.list:not(.list-icons) li i {
    margin-left: 0;
    margin-right: 8px;
    order: 2;
}

#footer ul.list:not(.list-icons) li a {
    order: 1;
}

/* Contact details - icons on the left, text on the right */
#footer .contact-details .list-icons li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

#footer .contact-details .list-icons li i {
    order: 1;
    margin-right: 10px;
    margin-left: 0;
    flex-shrink: 0;
}

#footer .contact-details .list-icons li p {
    order: 2;
    text-align: left;
}

/* Footer copyright section */
#footer .footer-copyright {
    text-align: left;
}

#footer .footer-copyright p {
    text-align: left;
}

#footer #sub-menu ul {
    text-align: right;
}

#footer #sub-menu ul li {
    text-align: left;
}


.page-header .breadcrumb > li + li:before {
  
  content: "\f105" !important;
}
