/* CSS Reset / Normalize */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #181C22;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #ECEDEE;
  background: #181C22;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5rem;
}
a {
  color: #31947A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #29b893;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  margin: 0;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
iframe {
  border: 0;
}

/* Variables (fall-back for older browsers) */
:root {
  --brand-primary: #1A3557;
  --brand-secondary: #D7DCE1;
  --brand-accent: #216B57;
  --brand-dark: #181C22;
  --brand-bg: #191D23;
  --brand-metal: #6F7C87;
  --font-display: 'Merriweather', 'Times New Roman', Serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(14,17,22,0.18);
  --card-bg: #20242A;
  --card-metal: #2A333C;
  --card-border: #252C35;
  --cta-gradient: linear-gradient(90deg, #31947A 0%, #216B57 100%);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 960px) {
  .container {
    padding: 0 12px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #E6EAF0;
  letter-spacing: 0.2px;
  font-weight: 700;
  margin-bottom: .6em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-family: var(--font-body);
  font-size: 1.10rem;
  color: #D7DCE1;
}
strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3, h4 { font-size: 1rem; }
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 42px;
  width: auto;
}

header {
  background: var(--brand-dark);
  border-bottom: 1.5px solid #222831;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1.06rem;
  letter-spacing: .2px;
  padding: 8px 0;
  color: #CFE0ED;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color .22s, border-bottom .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  border-bottom: 2px solid var(--brand-accent);
}

.cta.primary {
  background: var(--cta-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8em 2.2em;
  border-radius: var(--radius);
  box-shadow: 0 0.5px 4px 0 #17332899;
  border: 1.5px solid #216B57;
  margin-left: 12px;
  letter-spacing: .5px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, box-shadow .2s, border .15s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1F866A;
  color: #fff;
  box-shadow: 0 2px 16px 0 #23706855;
  border: 1.5px solid #31947A;
}

.cta.secondary {
  background: #2A333C;
  color: #B5BAC2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7em 1.7em;
  border: 1.5px solid #48556B;
  border-radius: var(--radius);
  margin-left: 0;
  transition: background .2s, color .2s, border .19s;
  box-shadow: var(--shadow);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #31947A;
  color: #fff;
  border: 1.5px solid #31947A;
}

button, .button {
  cursor: pointer;
  transition: background .2s, color .2s, border .15s, box-shadow .16s;
}

header .mobile-menu-toggle {
  display: none;
  background: none;
  color: #CFE0ED;
  font-size: 2rem;
  border: none;
  margin-left: 12px;
  z-index: 1003;
}

@media (max-width: 1020px) {
  .main-nav, .cta.primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,29,35,0.99);
  padding: 0;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.62,.13,.5,1.05);
  box-shadow: -3px 0 24px 0 #12203162;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 28px 24px 0 0;
  cursor: pointer;
  z-index: 10001;
  align-self: flex-end;
  padding: 8px;
  transition: background .14s;
}
.mobile-menu-close:hover {
  background: #273740;
  border-radius: var(--radius);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  margin-top: 60px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #E6EAF0;
  font-family: var(--font-body);
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 16px 4px;
  width: 100%;
  border-bottom: 1px solid #25334144;
  transition: background .2s, color .2s;
  border-radius: var(--radius);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222c31;
  color: #31947A;
}

@media (min-width: 1020px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: #1a2432 url('../assets/bg-industrial.jpg') center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 80px 20px 56px 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  letter-spacing: .5px;
  text-shadow: 0 2px 14px #17332870;
  max-width: 700px;
  margin-bottom: 0.6em;
}
.hero p {
  max-width: 520px;
  font-size: 1.18rem;
  color: #D7DCE1;
  margin-bottom: 1.2em;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
  }
  .hero .container {
    padding: 32px 8px 24px 8px;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size: 1rem; }
}

/* Feature GRID & CARDS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 330px;
  background: var(--card-metal);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 22px 22px;
  transition: transform .15s, box-shadow .23s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: grayscale(.25) brightness(.93) contrast(1.18);
}
.feature-item h3 {
  color: #fff;
  letter-spacing: .06em;
  font-size: 1.13rem;
  margin-bottom: 4px;
}
.feature-item p, .feature-item span {
  color: #D7DCE1;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-4px) scale(1.0206);
  box-shadow: 0 6px 24px 0 #1a355766;
  border-color: var(--brand-accent);
}

/* Generic Card System (blog, testimonials) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.4px solid var(--card-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 22px 22px;
  transition: box-shadow .2s, border-color .14s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 20px 0 #2737407d;
  border-color: var(--brand-accent);
  transform: translateY(-3px) scale(1.01);
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #1A2434;
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 1px 25px 0 #1a355719;
  padding: 20px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
  border: 1.5px solid #E0E4E8;
  font-family: var(--font-body);
  position: relative;
  transition: transform .14s, box-shadow .12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 7px 40px 0 #1A355722;
}
.testimonial-card p {
  color: #232930;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-author {
  color: #216B57;
  font-weight: 600;
  margin-top: 10px;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
}

/* Special for Testimonial Contrast */
.testimonial-card,
.testimonial-card p,
.testimonial-card .testimonial-author { color: #1A2434 !important; }

/* Service Lists / Preview */
.service-preview-list, .qualification-list ul, .practice-focus ul, .featured-articles ul{
  list-style: disc inside;
  margin: 0 0 1.5em 10px;
  padding: 0;
  color: #BFC6CC;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-articles {
  background: #20242A;
  border-left: 4px solid #216B57;
  padding: 16px 16px 16px 26px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: 18px;
}
.featured-articles h3 {
  color: #fff;
  font-size: 1.07rem;
}

/* CONTACT & FOOTER */
footer {
  background: #171B21;
  color: #BCC3C9;
  padding: 40px 0 0 0;
  border-top: 1.5px solid #232831;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #AABACB;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .12em;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #31947A;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 28px;
  color: #D7DCE1;
  font-size: 1rem;
}
.contact-footer img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
footer a img {
  height: 36px;
  margin-bottom: 12px;
}

/* Blog List */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.blog-list article {
  padding: 24px 18px 15px 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  border: 1.5px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .16s, border .12s, transform .11s;
}
.blog-list article:hover, .blog-list article:focus-within {
  box-shadow: 0 7px 24px 0 #23706827;
  border-color: var(--brand-accent);
  transform: scale(1.0211);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
.faq-item {
  padding: 20px 24px;
  background: var(--card-bg);
  border-left: 4px solid #216B57;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color .17s, box-shadow .21s;
  margin-bottom: 20px;
}
.faq-item h3 {
  color: #31947A;
  font-family: var(--font-display);
  margin-bottom: 7px;
  font-size: 1.16rem;
}
.faq-item p {
  color: #D7DCE1;
}
.faq-item:hover, .faq-item:focus-within {
  border-left: 4px solid #31947A;
  box-shadow: 0 4px 16px 0 #23706837;
}

/* Text-image & info sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.practice-focus ul, .qualification-list ul {
  gap: 7px;
  color: #D7DCE1;
}

.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  background: var(--card-metal);
  color: #F0F3F6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--card-border);
  padding: 20px 18px 14px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .14s, border-color .12s, transform .12s;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 6px 20px 0 #216b5737;
  border-color: var(--brand-accent);
  transform: scale(1.012);
}
.team-member h2 {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 3px;
}
.team-member p strong {
  color: #31947A;
}

.career-section {
  background: #191D23;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.short-bio {
  background: #22282F;
  border-left: 4px solid #216B57;
  color: #D7DCE1;
  border-radius: var(--radius);
  padding: 15px 20px;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

/* Contact & Map Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.address-map {
  background: #20242A;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.office-hours {
  margin-bottom: 12px;
  color: #BFC6CC;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 7px;
}
.contact-options img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.cta-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--card-border);
  padding: 22px 30px;
  margin: 14px 0 20px 0;
  box-shadow: var(--shadow);
}

.confirmation-message {
  background: #222A32;
  color: #D7DCE1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid #216B57;
  padding: 15px 22px;
  margin-bottom: 18px;
}

.contact-summary {
  background: #20242A;
  color: #D7DCE1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 13px 19px;
  margin-top: 12px;
}
.contact-summary img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

/* Responsive Flex Direction for Content Sections */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* GENERAL BUTTONS */
button, .btn, .cta, .mobile-menu-toggle {
  cursor: pointer;
  transition: background .18s, color .18s, border .16s, box-shadow .11s, filter .14s;
}
button:focus, .cta:focus {
  outline: 2px solid #31947A;
  outline-offset: 2px;
}

/* Section with List inside */
.qualification-list {
  background: #20242A;
  border-radius: var(--radius);
  padding: 11px 16px;
  margin-bottom: 16px;
}
.qualification-list h3 {
  margin-bottom: 10px;
  color: #31947A;
}

/* Utility Spacing for Lists inside flex containers with columns */
.practice-focus ul, .qualification-list ul, .service-preview-list {
  gap: 8px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #212932;
  border-top: 3px solid #216B57;
  box-shadow: 0 -4px 32px #16191f46;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 24px 17px 24px;
  z-index: 11000;
  font-size: 1rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .4s, transform .4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 260px;
  min-width: 180px;
  color: #ECEDEE;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  margin: 0;
  padding: 7px 17px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
}
.cookie-accept {
  background: #31947A;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #216B57;
}
.cookie-reject {
  background: #fff;
  color: #1A3557;
  border: 1.5px solid #D7DCE1;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #D7DCE1;
  color: #1A3557;
}
.cookie-settings-btn {
  background: #2A333C;
  color: #B5BAC2;
  border: 1.5px solid #48556B;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #31947A;
  color: #fff;
  border: 1.5px solid #31947A;
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(24,28,34,0.93);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .45s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #212932;
  border-radius: var(--radius);
  max-width: 430px;
  width: 95vw;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 2px 42px 0 #16201b79;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cookie-modal h2 {
  color: #31947A; font-size: 1.2rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-modal label {
  color: #CFE0ED;
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"], .cookie-modal input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: #216B57;
}
.cookie-modal .cookie-category.essential label {
  color: #bcd4bc;
  font-style: italic;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 0.8em;
  right: 1.1em;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  transition: background .13s;
  padding: 3px 7px;
  border-radius: var(--radius);
}
.cookie-modal .close-modal:hover {
  background: #29323e;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  padding: 9px 21px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 8px 11px 13px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 6px;
  }
  .cookie-modal {
    padding: 22px 7px 14px 7px;
  }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
a, button, .cta, .card, .feature-item, .blog-list article, .testimonial-card, .faq-item {
  transition: box-shadow .14s, border .11s, color .14s, background .14s, transform .13s;
}

/* RESPONSIVE: Flex Columns on Desktop, Columns on Mobile */
@media (max-width: 900px) {
  .features-grid, .card-container, .blog-list, .testimonials, .team-profiles {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    height: auto;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 14px;
    margin: 12px 0;
  }
  .content-wrapper, .content-grid {
    gap: 12px;
  }
  .feature-item, .team-member, .card, .blog-list article, .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/* Ensure min spacing always present */
.feature-item, .card, .blog-list article, .testimonial-card, .team-member, .faq-item {
  margin-bottom: 20px;
}

/* Hide visually on screen readers helper class */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* Miscellaneous Utility */
::-webkit-scrollbar {
  width: 9px;
  background: #20242A;
}
::-webkit-scrollbar-thumb {
  background: #222a32;
  border-radius: 6px;
}

/* Prevent text overlap */
h1, h2, h3, p, .card, .feature-item, .testimonials, .blog-list, .team-member {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* END OF INDUSTRIAL_MODERN UI CSS */