
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgb(68, 68, 68);
  background: #fff;
}

a { color: #558bb5; text-decoration: none; }
a:hover { color: #3a6f99; text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── INNER WRAP (1170px centred) ── */
.inner-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TOP NAVBAR ── */
.top-navbar {
  background: rgb(93, 119, 105);
  width: 100%;
}
.top-navbar .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 40px;
}
.top-navbar-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.top-navbar-links li a {
  color: #fff;
  font-size: 16px;
  padding: 9px 15px 9px 0;
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
}
.top-navbar-links li a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

/* Search box */
.navbar-search form { display: flex; align-items: center; }
.navbar-search input[type="search"] {
  padding: 6px 10px;
  border: none;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  width: 160px;
  outline: none;
  color: #666;
}
.navbar-search button {
  background: #558bb5;
  border: none;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 15px;
  height: 34px;
}

/* ── MAIN NAVBAR ── */
.main-navbar {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.main-navbar .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  gap: 20px;
}
/* Logo */
.site-branding a { display: block; }
.site-branding img {
  width: 260px;
  height: auto;
  display: block;
}

/* Primary nav */
.primary-nav { display: flex; list-style: none; gap: 0; align-items: center; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  color: rgb(51, 51, 51);
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 9px 10px;
  display: block;
  white-space: nowrap;
}
.primary-nav > li > a:hover { color: rgb(85, 139, 181); text-decoration: none; }
.primary-nav > li.active > a { color: rgb(85, 139, 181); }

/* Dropdown arrow */
.primary-nav > li.has-children > a::after {
  content: " ›";
  font-size: 12px;
}
/* Dropdown */
.primary-nav ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(93, 119, 105);
  min-width: 200px;
  z-index: 200;
  list-style: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.primary-nav li:hover > ul { display: block; }
.primary-nav ul li a {
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.primary-nav ul li a:hover { background: rgba(0,0,0,0.15); text-decoration: none; }
/* Sub-sub */
.primary-nav ul ul { top: 0; left: 100%; }

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #444;
  width: 100%;
  height: 500px;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
/* Caption box */
.slide-caption {
  position: absolute;
  background: rgba(255,255,255,0.93);
  padding: 36px 40px;
  max-width: 420px;
  top: 50%;
  transform: translateY(-50%);
}
.slide-caption.left  { left: 8%; }
.slide-caption.right { right: 8%; }
.slide-caption h2 {
  font-size: 28px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: 'Source Sans Pro', sans-serif;
}
.slide-caption p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* Slider nav arrows */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 70px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.55); }
.slider-prev { left: 0; }
.slider-next { right: 0; }
/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: rgba(255,255,255,0.9); }

/* ── PAGE CONTENT WRAPPER ── */
.content-wrapper {
  padding: 40px 40px 50px;
  max-width: 1170px;
  margin: 0 auto;
}

/* ── TWO-COL LAYOUT (WPBakery replica) ── */
.vc-row {
  display: flex;
  gap: 0;
  margin: 0 -15px;
}
.vc-col-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}
.vc-col-4 {
  flex: 0 0 33.333%;
  padding: 0 15px;
}
.vc-col-8 {
  flex: 0 0 66.666%;
  padding: 0 15px;
}

/* ── ENTRY CONTENT ── */
.entry-title {
  font-size: 38px;
  font-weight: 400;
  color: rgb(68, 68, 68);
  margin-bottom: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.2;
}
.entry-content { color: rgb(68, 68, 68); }
.entry-content p { margin-bottom: 20px; font-size: 16px; line-height: 27.2px; }
.entry-content h4 { font-size: 20px; font-weight: 600; margin: 20px 0 10px; color: rgb(68,68,68); }
.entry-content h3 { font-size: 24px; font-weight: 600; margin: 24px 0 12px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 5px; font-size: 16px; line-height: 1.7; }
.entry-content strong { color: inherit; }
.entry-content blockquote {
  border-left: 3px solid #ddd;
  padding: 10px 10px 10px 40px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}
.entry-content a { color: #558bb5; }
.entry-content a:hover { text-decoration: underline; }
.entry-content hr { border: none; border-top: 1px solid #eee; margin: 30px 0; }

/* Sidebar */
.sidebar-widget-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(34, 34, 34);
  margin-bottom: 16px;
}
.sidebar-industries {
  list-style: none;
  padding: 0;
  text-align: center;
}
.sidebar-industries li {
  font-size: 16px;
  color: #558bb5;
  margin-bottom: 4px;
}
.sidebar-img { margin-bottom: 20px; }
.sidebar-img img { width: 100%; height: auto; display: block; }

/* Quick links */
.quick-links { list-style: none; padding: 0; }
.quick-links li { border-bottom: 1px dotted #ddd; }
.quick-links li a { display: block; padding: 6px 0; color: #558bb5; font-size: 16px; }
.quick-links li a:hover { text-decoration: underline; }

/* Datasheets */
.datasheet-list { list-style: none; padding: 0; margin-top: 16px; }
.datasheet-list li { border-bottom: 1px solid #eee; padding: 8px 0; }
.datasheet-list li a { color: #558bb5; font-size: 16px; }

/* ── HOME CONTENT ── */
.home-content-wrap { max-width: 1170px; margin: 0 auto; padding: 40px 40px; }
.home-intro { text-align: center; margin-bottom: 36px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.footer-widgets-wrapper {
  background: rgb(248, 248, 248);
  padding: 40px 0 0;
}
.footer-widgets-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-widget {
  min-width: 220px;
  margin-bottom: 40px;
}
.footer-widget h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(34, 34, 34);
  margin-bottom: 14px;
  font-family: 'Source Sans Pro', sans-serif;
}
.footer-widget p { font-size: 16px; color: rgb(68,68,68); margin-bottom: 6px; }
.footer-widget a { color: #558bb5; font-size: 16px; }
.footer-widget strong { display: block; margin-bottom: 4px; font-size: 16px; color: rgb(34,34,34); }

.site-info {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 30px 0;
}
.site-info-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: rgb(92, 118, 105);
}
.site-info-inner a { color: rgb(92, 118, 105); }

/* ── FAQ ── */
.faq-toc { margin-bottom: 28px; }
.faq-toc a { color: #558bb5; display: block; margin-bottom: 4px; }
.faq-block { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.faq-block:last-child { border-bottom: none; }
.faq-q { font-weight: 600; font-size: 16px; color: rgb(68,68,68); margin-bottom: 8px; }
.back-top { font-size: 14px; margin-top: 12px; }
.back-top a { color: #558bb5; }

/* ── CONTACT ── */
.contact-info { background: #f8f8f8; border: 1px solid #e5e5e5; padding: 24px; margin-bottom: 28px; border-radius: 2px; }
.contact-info p { margin-bottom: 6px; font-size: 16px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 15px; margin-bottom: 4px; color: #555; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid #ccc; border-radius: 2px;
  font-family: 'Source Sans Pro', sans-serif; font-size: 16px;
  color: #444;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  background: #558bb5; color: #fff; border: none;
  padding: 10px 26px; font-size: 16px; cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif; border-radius: 2px;
}
.contact-form button:hover { background: #3a6f99; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-navbar .inner-wrap { flex-wrap: wrap; padding: 15px 20px; }
  .primary-nav { flex-wrap: wrap; }
  .vc-row { flex-direction: column; }
  .hero-slider { height: 300px; }
  .hero-slide img { height: 300px; }
  .slide-caption { max-width: 80%; position: static; transform: none;
    background: rgba(255,255,255,0.93); margin: 20px auto; }
  .home-intro { padding: 0 20px; }
}
