/* ============================================================
   Euro-Bridge — Professional Redesign
   ============================================================ */

/* ===== COLOUR TOKENS ===== */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a2e45;
  --red:       #c0392b;
  --red-hover: #a93226;
  --gold:      #d4a017;
  --white:     #ffffff;
  --off-white: #f8f9fc;
  --text-dark: #1a1a2e;
  --text-mid:  #4a4a5a;
  --text-soft: #888;
  --border:    #e5e7ef;
}

/* ===== GLOBAL TYPOGRAPHY RESET ===== */
body { font-family: 'Poppins-Regular', Arial, sans-serif; }

/* ===== TOP CONTACT STRIP ===== */
.top-strip {
  background: var(--navy);
  padding: 8px 0;
  width: 100%;
  position: relative;
  z-index: 900;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}
.top-strip__left,
.top-strip__right {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-strip__left i,
.top-strip__right i { color: var(--red); margin-right: 5px; font-size: 11px; }
.top-strip__right a { color: rgba(255,255,255,0.72); text-decoration: none; }
.top-strip__right a:hover { color: #fff; }

/* ===== HEADER / NAV ===== */
.header-v4 .container-menu-desktop {
  height: 84px;
  margin-top: 0;
}
.header-v4 .wrap-menu-desktop {
  top: 0;
  height: 84px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  border-bottom: none;
}

/* Content — header spacer handles offset, no extra margin */
.section-slide { margin-top: 0; }
.bg-img1       { margin-top: 0; }

/* Override main.css fixed-scroll state — keep nav 84px, spacer 84px */
.header-v4 .fix-menu-desktop.container-menu-desktop { height: 84px; }
.fix-menu-desktop .wrap-menu-desktop                 { height: 84px; }

/* Nav items — compact for 9-item menu */
.main-menu > li {
  margin: 0 0 0 4px;
  padding: 15px 4px 15px 0;
}
.main-menu > li > a {
  font-family: 'Poppins-Medium', Arial, sans-serif;
  font-size: 12px;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s;
}
.main-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.main-menu > li > a:hover::after,
.main-menu > li.active-menu > a::after { width: 100%; }
.main-menu > li > a:hover,
.main-menu > li.active-menu > a { color: var(--red) !important; }

/* Override purple hover from main.css */
.main-menu > li:hover > a { color: var(--red) !important; }

/* Nav layout — logo left, items centered */
.limiter-menu-desktop {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
.limiter-menu-desktop .menu-desktop {
  flex: 1;
  justify-content: center;
}
.limiter-menu-desktop .menu-desktop .main-menu {
  justify-content: center;
}

/* Logo sizing */
.limiter-menu-desktop > a > img,
.logo-mobile img { max-height: 54px; }

/* Mobile header adjust */
.wrap-header-mobile {
  top: 36px;
}

/* ===== HERO SLIDER ===== */
/* Full viewport minus sticky nav only (strip scrolls away) */
.item-slick1 {
  height: calc(100vh - 84px) !important;
  position: relative;
}

/* Dark gradient overlay on every slide */
.item-slick1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,27,42,0.75) 0%,
    rgba(13,27,42,0.40) 60%,
    rgba(13,27,42,0.20) 100%
  );
  z-index: 1;
}
.item-slick1 .container {
  position: relative;
  z-index: 2;
}

/* Make slider text white + shadow */
.item-slick1 .ltext-101 { color: rgba(255,255,255,0.88) !important; font-family: 'Poppins-Light', Arial, sans-serif !important; letter-spacing: 4px; text-transform: uppercase; font-size: 16px; }
.item-slick1 .ltext-201 { color: #fff !important; text-shadow: 0 3px 20px rgba(0,0,0,0.30); font-family: 'Poppins-Bold', Arial, sans-serif !important; font-size: 48px; line-height: 1.1; }

/* "Shop Now" button — outlined white, fills red on hover */
.item-slick1 a.bg1 {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  font-family: 'Poppins-SemiBold', Arial, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px !important;
  transition: all 0.3s !important;
  min-width: 180px;
}
.item-slick1 a.bg1:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}

/* Slider text layout position */
.item-slick1 .respon5 { padding-top: 80px !important; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--red);
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: background 0.3s;
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: rgba(192,57,43,0.12); }
.trust-bar__num {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: 34px;
  color: var(--red);
  line-height: 1;
}
.trust-bar__label {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== BANNER / CATEGORY BLOCKS ===== */
.sec-banner { padding: 80px 0 50px; background: var(--off-white); }

.block1 { overflow: hidden; border-radius: 4px; }
.block1-name {
  font-family: 'Poppins-Bold', Arial, sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 1px;
}
.block1-info {
  font-family: 'Poppins-Regular', Arial, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.block1-link {
  font-family: 'Poppins-SemiBold', Arial, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 2px;
  transition: background 0.3s;
}
.block1-txt:hover .block1-link {
  background: var(--navy) !important;
  color: #fff !important;
}
.block1-txt {
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.40) 50%,
    rgba(13,27,42,0.05) 100%
  ) !important;
}
.block1-txt:hover {
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.90) 0%,
    rgba(13,27,42,0.65) 70%,
    rgba(13,27,42,0.30) 100%
  ) !important;
}
.block1-txt:hover .block1-name,
.block1-txt:hover .block1-info { color: #fff !important; }

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--white);
  padding: 80px 0 70px;
}
.section-heading { text-align: center; margin-bottom: 52px; }
.section-heading__pre {
  display: inline-block;
  font-family: 'Poppins-SemiBold', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-heading__title {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-heading__divider {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-heading__sub {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.why-card {
  background: var(--off-white);
  padding: 38px 28px 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.32s ease;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.32s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-7px); box-shadow: 0 14px 36px rgba(13,27,42,0.12); border-color: transparent; background: #fff; }
.why-card:hover::after { transform: scaleX(1); }
.why-card__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(192,57,43,0.09);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--red);
  transition: background 0.3s;
}
.why-card:hover .why-card__icon { background: var(--red); color: #fff; }
.why-card__title {
  font-family: 'Poppins-SemiBold', Arial, sans-serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card__text {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ===== CTA STRIP (before footer) ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(192,57,43,0.12);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(192,57,43,0.08);
}
.cta-strip__title {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
.cta-strip__sub {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}
.cta-strip__btn {
  display: inline-block;
  font-family: 'Poppins-SemiBold', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--red);
}
.cta-strip__btn:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  text-decoration: none;
}

/* ===== FOOTER ===== */
footer.bg3 {
  background: #111820 !important;
  padding-top: 70px;
  padding-bottom: 0 !important;
}
.footer-top { padding-bottom: 50px; }
.footer-logo-img {
  max-width: 110px;
  filter: brightness(10);
  opacity: 0.9;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 220px;
}
footer.bg3 h4.stext-301 {
  font-family: 'Poppins-SemiBold', Arial, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff !important;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 6px;
}
footer.bg3 h4.stext-301::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
}
footer.bg3 ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.50) !important;
  transition: all 0.25s;
  display: inline-block;
  padding: 2px 0;
}
footer.bg3 ul li a:hover { color: #fff !important; padding-left: 4px; }
footer.bg3 .stext-107 { color: rgba(255,255,255,0.50); font-size: 13px; line-height: 1.7; }

.footer-social { margin-top: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55) !important;
  font-size: 15px;
  margin-right: 8px;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 16px 0;
  margin-top: 40px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.50); }
.footer-bottom a:hover { color: #fff; }

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.80) 0%, rgba(13,27,42,0.45) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.page-hero__title {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: 40px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.page-hero__breadcrumb {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.68); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ===== PRODUCT SECTION HEADING ===== */
.product-section-head {
  text-align: center;
  padding: 56px 0 32px;
}
.product-section-head__title {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-section-head__bar {
  width: 44px; height: 3px;
  background: var(--red);
  margin: 0 auto 14px;
  border-radius: 2px;
}
.product-section-head__sub {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== PRODUCT GRID ===== */
.product-grid-wrap { padding-bottom: 70px; }
#product-grid1 > div { margin-bottom: 28px; }

.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(13,27,42,0.07);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(13,27,42,0.13);
  border-color: transparent;
}
.product-card__img-wrap {
  width: 100%; height: 240px;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  padding: 10px;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }
.product-card__body {
  padding: 14px 16px 18px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.product-card__name {
  display: block;
  font-family: 'Poppins-SemiBold', Arial, sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.2px;
  line-height: 1.4;
  transition: color 0.2s;
}
.product-card__name:hover { color: var(--red); text-decoration: none; }

/* ===== ABOUT PAGE ===== */
.how-bor1, .how-bor2 {
  box-shadow: 0 8px 30px rgba(13,27,42,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.mtext-111 {
  font-family: 'Poppins-Bold', Arial, sans-serif !important;
  color: var(--navy) !important;
}
.bor16 { border-left: 4px solid var(--red) !important; }

/* ===== CONTACT PAGE ===== */
.bor10 { border: 1px solid var(--border) !important; border-radius: 6px; }
button.hov-btn3, .hov-btn3 {
  background: var(--red) !important;
  border: none !important;
  color: #fff !important;
  font-family: 'Poppins-SemiBold', Arial, sans-serif;
  letter-spacing: 1px;
  transition: background 0.3s !important;
}
button.hov-btn3:hover, .hov-btn3:hover {
  background: var(--red-hover) !important;
}
.size-116 {
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  transition: border-color 0.2s;
}
.size-116:focus { border-color: var(--red) !important; outline: none; }

/* ===== DYNAMIC CONTENT PAGES (quality / infrastructure) ===== */
.dynamic-page-content { padding: 56px 0 80px; }
.dynamic-page-content h1,
.dynamic-page-content h2,
.dynamic-page-content h3 {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  color: var(--navy);
  margin-bottom: 14px;
}
.dynamic-page-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.dynamic-page-content img { max-width: 100%; border-radius: 6px; margin: 16px 0; }

/* Spinner */
.content-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
  color: var(--text-soft);
  font-size: 14px;
  font-family: 'Poppins-Regular', Arial, sans-serif;
}
.content-loading::before {
  content: '';
  width: 38px; height: 38px;
  border: 3px solid #eee;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-bottom: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MOBILE MENU ===== */
.main-menu-m { background: var(--navy) !important; }
.main-menu-m > li > a {
  color: rgba(255,255,255,0.80) !important;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.main-menu-m > li > a:hover,
.main-menu-m > li.active-menu > a { color: #fff !important; background: rgba(192,57,43,0.2); }
.menu-mobile { background: var(--navy) !important; }

/* ===== BACK TO TOP ===== */
.btn-back-to-top {
  background: var(--red) !important;
  opacity: 1 !important;
  border-radius: 4px 4px 0 0 !important;
}
.btn-back-to-top:hover { background: var(--red-hover) !important; }

/* ===== REMOVE PURPLE EVERYWHERE ===== */
.loader05 { border-color: var(--red); }
.hov-cl1:hover { color: var(--red) !important; }
.cl1 { color: var(--red) !important; }
.bg1 { background-color: var(--red) !important; }
.bor1 { border-color: var(--red) !important; }
.hov-btn1:hover { background: var(--red-hover) !important; border-color: var(--red-hover) !important; }
.icon-header-noti::after { background: var(--red) !important; }
.label1::after { background: var(--red) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .trust-bar__item { padding: 20px 10px; }
  .trust-bar__num { font-size: 26px; }
  .cta-strip__title { font-size: 24px; }
}
@media (max-width: 767px) {
  .top-strip { display: none; }
  .header-v4 .container-menu-desktop { height: 70px; }
  .page-hero { height: 200px; }
  .page-hero__title { font-size: 26px; letter-spacing: 2px; }
  .item-slick1 { height: calc(100vh - 70px) !important; }
  .item-slick1 .ltext-201 { font-size: 30px !important; }
  .item-slick1 .ltext-101 { font-size: 12px !important; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cta-strip { padding: 50px 0; text-align: center; }
  .cta-strip__btn { margin-top: 20px; }
  .section-heading__title { font-size: 24px; }
}
@media (max-width: 575px) {
  .item-slick1 a.bg1 { min-width: 140px; padding: 12px 24px !important; font-size: 11px !important; }
  .trust-bar__num { font-size: 22px; }
}

/* ===== PROCESS STEPS ===== */
.process-step {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 24px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.process-step:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.process-step__num {
  font-size: 42px;
  font-weight: 800;
  color: rgba(192,57,43,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step__title {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.process-step__text { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ===== WHAT WE MANUFACTURE ===== */
.what-we-make { background: #f7f8fc; padding: 80px 0; }
.what-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.what-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.what-card__icon { font-size: 40px; color: var(--red); margin-bottom: 18px; }
.what-card__title { font-size: 17px; font-weight: 700; color: #0d1b2a; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.what-card__text { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 18px; }
.what-card__link { display: inline-block; font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--red); padding-bottom: 2px; text-decoration: none; transition: color 0.2s; }
.what-card__link:hover { color: #0d1b2a; border-color: #0d1b2a; text-decoration: none; }
.what-card__list { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; }
.what-card__list li { font-size: 13px; color: #555; padding: 5px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px; }
.what-card__list li::before { content: '–'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ===== ABOUT SECTIONS ===== */
.about-values { background: #fff; padding: 80px 0; }
