/* ========= Base ========= */

body {
  margin: 0;
  padding: 0;
  background-color: #fff !important;
  font-family: "Lato", sans-serif;
}

.bg-wrapper,
.bg-wrapper2 {
  position: relative;
}

.bg-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Vector1.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  pointer-events: none;
  z-index: -1;
  aspect-ratio: 1 / 1;
}

.bg-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Vector2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  pointer-events: none;
  z-index: -1;
  aspect-ratio: 1 / 1;
}

.bg-wrapper2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/Vector4.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  pointer-events: none;
  z-index: -1;
  aspect-ratio: 1 / 1;
}

/* ==================================
   Header Section
================================== */

/* ========= Top Header ========= */

.header-wrapper {
  /* position: relative; */
  border-bottom: 1px solid #d9d9d9;
}

/* .header-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 2000px;
  background-image: url(../images/Vector-top.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  pointer-events: none;
  z-index: 0;
  aspect-ratio: 1 / 1;
} */

.top-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========= Contact ========= */

.contact-box {
  /* width:280px; */
  padding: 6px 25px;
  border: 1px solid #23395d;
  border-radius: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  transition: all .3s ease-in-out;
}

.contact-box:hover {
  background: #439D47;
  border-color: #439D47;
}

.contact-box:hover .contact-item {
  color: #fff;
}

.item_1 {
  margin-right: 12px;
}

.contact-item {
  /* padding: 0 10px; */
  text-decoration: none;
  color: #23395d;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-item .phone {
  font-size: 12px;
}

.contact-item .envelope {
  font-size: 14px;
}

/* ========= Logo ========= */

.logo-area img {
  height: 42px;
}

.logo-text {
  margin: 0;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #0e2f5c;
  line-height: 1;
}

/* ========= Search ========= */

.search-wrapper {
  display: flex;
  justify-content: flex-end;
}

.search-box {
  width: 280px;
  padding: 4px 7px 4px 10px;
  border: 1px solid #23395d;
  border-radius: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  transition: all .3s ease-in-out;
}

.search-box:hover {
  border-color: #439D47;
}

.search-box i {
  color: #23395d;
  font-size: 13px;
}

.search-box:hover i {
  color: #439D47;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 12px;
}

.search-box input::placeholder {
  color: lightgrey;
}

.search-box button {
  border: none;
  /* width: 60px;
  height: 24px; */
  padding: 4px 12px 2px 12px;
  border-radius: 15px;
  background: #4caf50;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.search-box button:hover {
  background: #0B2142;
}

.mobile-search-icon {
  display: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;

  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  width: 90%;
  max-width: 500px;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 28px;
  color: #23395d;
  cursor: pointer;
}

.search-overlay .search-box {
  width: 100%;
  padding: 8px;
}

.hamburger-btn {
  display: none;
}

/* ========= Divider ========= */

.header-divider {
  border-top: 1px solid #d7d7d7;
}

/* ========= Navigation ========= */

.navbar-custom {
  height: 38px;
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #23395d;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a.active {
  color: #4caf50;
}

.nav-menu li a i {
  font-size: 8px;
}

.mega-dropdown {
  position: relative;
}

/* DROPDOWN PANEL */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  background: #ffffff;
  border: 1px solid #94a2b8;
  border-radius: 6px;
  padding: 12px;
  margin-top: 14px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEMS */

.mega-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: .25s;
}

.mega-item:last-child {
  margin-bottom: 0;
}

.mega-item span {
  font-size: 15px;
  font-weight: 600;
  color: #12284f;
}

/* ICON */

.mega-item img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  color: #000 !important;
}

/* ACTIVE */

.mega-item:hover {
  background: #439D47;
}

.mega-item:hover span {
  color: #fff;
}

.mega-item:hover img {
  filter: brightness(0) invert(1);
}

.mobile-contact-box {
  display: none;
}

.big-mega-menu {
  width: 400px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.big-mega-menu .mega-item {
  width: 47%;
}

.brand-mega-menu {
  width: 500px !important;
  display: flex;
  justify-content: space-between;
}

.brand-mega-menu img {
  width: 100px;
  height: auto;
}

/* HOVER */

/* .mega-item:hover {
  background: #439D47;
  color: #fff;
} */

/* .mega-item:hover span {
  color: #fff;
} */

/* ==================================
   Slider Section
================================== */

/* HERO */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  padding: 50px;
}

.hero-image {
  text-align: center !important;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  display: inline-block;
}

.hero-title {
  max-width: 1150px;
  margin: 35px auto 0;
  text-align: center;
  color: #0d234f;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
  text-align: center;
  color: #203455;
  font-size: 15px;
  margin: 20px 0 30px;
}

.hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 13px 50px;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #0d234f 0%, #2f7d45 100%);
  color: #fff;
}

/* FEATURES */

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 10px 0 60px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 20px;
  border: 2px solid #8897af;
  border-radius: 50px;
  background: #fff;
  color: #203455;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.feature-pill:hover {
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  border-color: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
}

/* OWL */

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  border: 3px solid #0d234f !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #0d234f !important;
  font-size: 22px !important;
  transition: all 0.3s ease-in-out;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
  background: #0d234f !important;
  color: #fff !important;
}

.hero-carousel .owl-nav button.owl-prev {
  left: 235px;
}

.hero-carousel .owl-nav button.owl-next {
  right: 235px;
}

.hero-carousel .owl-nav button i {
  font-size: 17px;
  transform: translateY(-25%);
}

.hero-carousel .owl-nav button span {
  line-height: 1;
}

.arrow_image img {
  height: 14px;
}

/* ==================================
   Industry Section
================================== */

/* ========== Industry-section =========== */

/* SECTION */

.industry-section {
  padding: 12px 8px;
}

.industry_heading_box {
  margin-bottom: 70px;
}

.industry-title {
  font-size: 48px;
}

.industry-subtitle {
  font-size: 15px;
}

/* LEFT FEATURE CARD */

.industry-feature-card {
  padding: 50px 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #082452 0%, #082452 55%, #1f6a4a 100%);
  position: relative;
  height: 100%;
}

.industry-content h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.industry-content p {
  color: #e4e8ef;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

/* TAGS */

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  margin-bottom: 23px;
}

.industry-tags span {
  height: 26px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #dce3ee;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.industry-tags span:hover {
  background: #439D47;
  border-color: #439D47;
  color: #fff
}

/* IMAGE */

.industry-image-box {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.industry-image-box img {
  max-width: 100%;
  object-fit: cover;
}

/* BUTTON */

.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 20px;
  justify-content: center;
  background: #4ba748;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

/* RIGHT CARDS */

.industry-card {
  height: 100%;
  padding: 12px;
  border: 2px solid #97a6bc;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.card-image-box {
  padding: 30px 40px;
  border: 1px solid #97a6bc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #fff;
}

.card-image-box img {
  max-width: 100%;
  height: 120px;
  object-fit: cover;
}

/* TEXT */

.industry-card h3 {
  color: #0a234d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.industry-card p {
  color: #243b61;
  font-size: 14px;
  line-height: 1.7;
}

.solution-btn-2 {
  margin: 0 0 20px 0;
}

.industry-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #082452 0%, #082452 30%, #1f6a4a 100%);
}

.industry-card:hover h3,
.industry-card:hover p {
  color: #fff;
}

/* SMALL CARDS */

.small-card .card-image-box {
  padding: 20px 30px;
}

.small-card .card-image-box img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
}

.small-card h3 {
  font-size: 24px;
}

/* ==========================
   CORE CAPABILITIES
========================== */

.capabilities-section {
  padding: 90px 0 60px;
  position: relative;
}

/* TITLE */

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

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

.section-title-heading {
  margin: 0;
  color: #0B2142;
  background: linear-gradient(90deg, #439D47 33%, #0B2142 42%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  text-align: center;
}

.section-title-heading span {
  color: inherit;
}

.section-title-heading-wide {
  max-width: 1300px;
  margin: 0 auto;
}

.section-title h2 span {
  color: #43a047;
}


/* GRID */

.capabilities-grid {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: auto;
}

/* CARD */

.capability-card {
  height: 230px;
  border: 1.5px solid #7585a0;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #fff;
}

.capability-card img {
  transition: all 0.3s ease;
}

/* ICON */

.icon-box {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-box img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  transition: .3s;
}

/* TEXT */

.capability-card h4 {
  margin: 0;
  color: #10264d;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* HOVER */

.capability-card:hover {
  transform: translateY(-3px);
  border-color: #43a047;
  background: linear-gradient(135deg,
      #2f7d45 0%,
      #0d234f 20%,
      #0d234f 50%,
      #0d234f 80%,
      #2f7d45 100%);
}

.capability-card:hover img {
  color: #fff !important;
  filter: brightness(0) invert(1);
}

.capability-card:hover h4 {
  color: #fff;
}

/* ===========================
   EQUIPMENT SECTION
=========================== */

.equipment-section {
  padding: 60px 0 15px;
}

/* CARD */

.equipment-card {
  height: 100%;
  border: 1px solid #7b8ba5;
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.equipment-card:hover {
  transform: translateY(-3px);
  border-color: #43a047;
  background: linear-gradient(135deg,
      #2f7d45 0%,
      #0d234f 20%,
      #0d234f 50%,
      #0d234f 80%,
      #2f7d45 100%);
}

/* IMAGE */

.equipment-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.equipment-image img {
  max-width: 100%;
  max-height: 290px;
  object-fit: contain;
}

/* TITLE */

.equipment-card h3 {
  color: #10264d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  transition: color .35s ease;
}

/* BUTTON */

.equipment-btn {
  width: 153px;
  height: 38px;
  background: #43a047;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .3s ease;
}

/* HOVER */

.equipment-card:hover {
  border-color: #43a047;
}

.equipment-card:hover h3 {
  color: #fff;
}

.equipment-btn {
  transition: all .3s ease;
}

.equipment-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 50%);
}

/* EXPLORE */

.explore-wrapper {
  margin-top: 95px;
  text-align: center;
}

.explore-btn {
  width: 240px;
  height: 45px;
  border: 1.5px solid #7b8ba5;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  transition: all .3s ease;
}

.explore-btn:hover {
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 50%);
  border-color: #10264d;
  color: #fff;
}

/* ==================================
   TECHNOLOGY PARTNERS
================================== */

.partners-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  left: -240px;
  bottom: -175px;
  width: 1000px;
  height: 800px;
  background-image: url("../images/Artboard\ 2@4x\ 2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  pointer-events: none;
  z-index: 0;
  aspect-ratio: 1 / 1;
}

/* BOX */

.partners-box {
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background: #F7F8FA;
  border: 1px solid #7fc57a;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* LOGOS */

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-height: 50px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  transition: all .35s ease;
}

/* OPTIONAL HOVER */

.partner-item:hover img {
  transform: scale(1.05);
}

/* ==================================
   Filteration Section
================================== */

.filtration-section {
  background: linear-gradient(90deg,
      #2e7249 0%,
      #0d2a63 45%,
      #082354 100%);

  padding: 35px 20px;
  overflow: hidden;
  margin-bottom: 50px;
}

.filtration-section .section-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Green Button */
.btn-specialist {
  background: #4aa344;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.btn-specialist:hover {
  background: linear-gradient(90deg, #0d234f 0%, #2f7d45 100%);
  color: #fff;
}

/* Email Button */
.btn-email {
  background: #ffffff;
  color: #17325f;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.btn-email:hover {
  background: #4aa344;
  color: #fff;
}

.mail-icon {
  width: 28px;
  height: 28px;
  border: 2px solid #17325f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.mail-icon i {
  color: #17325f;
  font-size: 14px;
}

.btn-email:hover .mail-icon,
.btn-email:hover .mail-icon i {
  border-color: #fff;
  color: #fff;
}

/* ==================================
   Team Choose Copure Section
================================== */

/* WHY COPURE SECTION */

.why-copure-section {
  padding: 50px 0 90px;
}

.why-copure-section .container {
  max-width: 1150px;
  margin: auto;
}

.mobile-title {
  display: none;
}

.choose-section-title-1 {
  text-align: center;
}

.choose-section-title-2 {
  text-align: center;
}

.mobile-title span {
  color: #439D47;
}

.why-description-1 {
  text-align: center;
  max-width: 820px;
  margin: 30px auto;
  color: #22375d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.why-description-2 {
  max-width: 480px;
  margin: 30px auto 0;
  color: #22375d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

/* CARDS */

.cards-row {
  margin-top: 40px;
}

.feature-card {
  height: 100%;
  background: linear-gradient(135deg,
      #08295d 0%,
      #07285a 65%,
      #0d4651 100%);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, .12),
    0 10px 18px rgba(0, 0, 0, .08);
  transition: .3s ease;
}

.feature-card:hover {
  background: linear-gradient(35deg, #2f7d45 0%, #0d234f 20%, #0d234f 50%, #0d234f 80%, #2f7d45 100%);
  transform: translateY(-5px);
}

/* ICON */

.icon-box-2 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27, 88, 76, 0.45);
  color: #63dd7a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.icon-box-2 img {
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
}

/* CARD CONTENT */

.feature-card h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
}

.feature-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ==================================
   Footer Section
================================== */

.copure-footer {
  background: linear-gradient(90deg,
      #07265b 0%,
      #08285f 55%,
      #134f55 100%);

  color: #ffffff;
  overflow: hidden;
}

/* Container Width */

.copure-footer .container {
  max-width: 1150px;
}

/* Top Row */

.footer-top {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-phone a,
.footer-email a {
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: #fff;
}

.footer-phone i,
.footer-email i {
  margin-right: 10px;
  color: rgba(255, 255, 255, .7);
}

/* Logo */

.footer-logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}

/* Divider */

.footer-divider {
  height: 1px;
  background: rgba(33, 119, 201, .55);
}

.divider-bottom {
  margin-top: 25px;
}

/* Links Area */

.footer-links {
  padding: 30px;
}

.footer-links h5 {
  color: #6e88b8;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  font-size: 15px;
  transition: .3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Social Icons */

.social-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px 0;
}

.social-wrap a {
  width: 34px;
  height: 34px;
  background: #43a047;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.social-wrap a:hover {
  transform: translateY(-2px);
}

/* Copyright */

.footer-copyright {
  background: #1d3f77;
  text-align: center;
  padding: 15px;
  color: #ffffff;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ==================================
   Laboratories Hero Section
================================== */

.laboratories-hero-section {
  padding: 60px 0;
  position: relative;
}

.laboratories-hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #f1f8ff;
  z-index: -1;
}

.laboratories-hero-card {
  overflow: hidden;
}

.laboratories-hero-content {
  padding: 56px 0;
}

.laboratories-kicker {
  display: inline-block;
  color: #439d47;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.laboratories-heading {
  margin: 8px 0 0;
  color: #0b2142;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1.8px;
}

.laboratories-divider {
  width: 175px;
  height: 2px;
  margin: 18px 0 16px;
  background: #3d9e4f;
}

.laboratories-subheading {
  max-width: 590px;
  margin: 0 0 18px;
  color: #0b2142;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.laboratories-description {
  max-width: 485px;
  margin: 0;
  color: #0b2142;
  font-size: 15px;
  line-height: 1.7;
}

.laboratories-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.laboratories-cta:hover {
  background: #18345f;
  color: #fff;
}

.laboratories-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 9px;
}

/* ==================================
   What We Supply Section
================================== */

.lab-supply-section {
  padding: 60px 0;
}

.lab-supply-heading {
  margin-bottom: 40px;
}

.lab-supply-heading h2 {
  margin: 0;
  color: #1A3A6B;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.lab-supply-heading-line {
  display: inline-block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  background: #3D9E4F;
  border-radius: 3px;
}

.lab-supply-card {
  height: 100%;
  padding: 24px 18px 20px;
  border: 1.45px solid #E4E8F0;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 44, 94, 0.04);
  transition: all 0.3s ease-in-out;
}

.lab-supply-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 44, 94, 0.08);
}

.lab-supply-card h3 {
  margin: 0 0 14px;
  color: #1A3A6B;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.lab-supply-card p {
  margin: 0;
  color: #555E72;
  font-size: 15px;
  line-height: 1.65;
}

.lab-supply-icon {
  margin: 0 auto 20px;
}

/* ==================================
   Why Choose CoPure Section
================================== */

.lab-choose-section {
  padding: 60px 0;
}

.lab-choose-heading {
  margin-bottom: 42px;
}

.lab-choose-heading h2 {
  margin: 0;
  color: #1a3a6b;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.lab-choose-heading-line {
  display: inline-block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  background: #3d9e4f;
  border-radius: 3px;
}

.lab-choose-row {
  margin-bottom: 42px;
}

.lab-choose-card {
  height: 100%;
  padding: 50px 16px 22px;
  border: 1.45px solid #0B21429C;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.lab-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 44, 94, 0.08);
}

.lab-choose-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 26px;
  border: 1.45px solid #97a6bc;
  border-radius: 8px;
  color: #46a24b;
  font-size: 18px;
}

.lab-choose-card h3 {
  min-height: 48px;
  margin: 0 0 14px;
  color: #1A3A6B;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.lab-choose-card p {
  margin: 0 auto;
  color: #555E72;
  font-size: 15px;
  line-height: 1.7;
}

.lab-choose-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lab-choose-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.lab-choose-primary-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #0d234f 0%, #2f7d45 100%);
}

.lab-choose-primary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 11px;
}

.lab-choose-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  border: 1.45px solid #97a6bc;
  background: #fff;
  color: #1a3a6b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.lab-choose-secondary-btn:hover {
  border-color: #1a3a6b;
  color: #1a3a6b;
  box-shadow: 0 12px 24px rgba(15, 44, 94, 0.08);
}

/* ==================================
   Laboratory Contact Section
================================== */

.lab-contact-section {
  padding: 10px 0 96px;
}

.lab-contact-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.lab-contact-info-card {
  height: 100%;
  padding: 30px 22px 24px;
  border: 1.45px solid rgba(11, 33, 66, 0.35);
  border-radius: 8px;
  background: #eef6ff;
}

.lab-contact-info-card h2 {
  margin: 0 0 6px;
  color: #0b2142;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.lab-contact-info-text {
  margin: 0 0 28px;
  color: #56af59;
  font-size: 14px;
  line-height: 1.5;
}

.lab-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lab-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.lab-contact-list li:last-child {
  margin-bottom: 0;
}

.lab-contact-list-icon {
  color: #0c74c9;
  font-size: 14px;
  line-height: 1.2;
  transform: translateY(3px);
}

.lab-contact-list a {
  color: #0c74c9;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.7;
}

.lab-contact-list a:hover {
  color: #0b2142;
}

.lab-contact-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.lab-contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #0c74c9;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease-in-out;
}

.lab-contact-social a:hover {
  background: #0b2142;
  color: #fff;
}

.lab-contact-form-wrap {
  height: 100%;
}

.lab-contact-input {
  height: 34px;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  background: #f3f3f3;
  color: #0b2142;
  font-size: 11px;
  box-shadow: none !important;
}

.lab-contact-input::placeholder {
  color: #7ea9d5;
}

.lab-contact-input:focus {
  border-color: #97a6bc;
  background: #f8f8f8;
}

.lab-contact-input.form-select {
  color: #8b8b8b;
}

.lab-contact-textarea {
  height: 64px;
  min-height: 64px;
  padding-top: 10px;
  resize: none;
}

.lab-contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  height: 34px;
  padding: 0 18px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.lab-contact-submit-btn:hover {
  background: linear-gradient(90deg, #0d234f 0%, #2f7d45 100%);
}

.lab-contact-post-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  margin-top: 44px;
}

.lab-contact-post-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.2;
}

.lab-contact-post-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1.4px solid #0b2142;
  border-radius: 50%;
  color: #0b2142;
  font-size: 10px;
}

.lab-contact-post-link:hover {
  color: #0b2142;
}

/* ==================================
   Partner Spotlight Section
================================== */

.partner-spotlight-section {
  padding: 0px 0 60px;
  overflow: hidden;
}

.partner-spotlight-title-wrap {
  margin-bottom: 58px;
}

.partner-spotlight-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 50px;
  margin: 0;
  padding: 8px 20px;
  border: 1px solid #ccd6e4;
  color: #20457d;
  background: #fff;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.partner-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
}

.partner-spotlight-item {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-spotlight-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: transform 0.3s ease-in-out;
}

.partner-spotlight-logo img {
  max-width: 100%;
  width: auto;
  max-height: 62px;
  object-fit: contain;
}

.partner-spotlight-hover-card {
  position: absolute;
  top: 50%;
  left: 68%;
  width: 270px;
  padding: 22px 22px 22px 22px;
  background: linear-gradient(318deg, #007AC3 -11%, #439D47 129%);
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(12, 64, 79, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-8px);
  transition: all 0.28s ease-in-out;
  z-index: 2;
}

.partner-spotlight-hover-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 12px solid #2d9c91;
  transform: translateY(-50%);
}

.partner-spotlight-hover-card ul {
  margin: 0;
  padding-left: 5px;
}

.partner-spotlight-hover-card li {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.partner-spotlight-hover-card li:last-child {
  margin-bottom: 0;
}

.partner-spotlight-item:hover {
  z-index: 3;
}

.partner-spotlight-item:hover .partner-spotlight-logo {
  transform: translateX(-40px);
}

.partner-spotlight-item:hover .partner-spotlight-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==================================
   Contact Page Section
================================== */

.contact-page-section {
  padding: 60px 0;
}

.contact-page-wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-page-info-card {
  height: 100%;
  padding: 28px 26px 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #36864e 0%, #122c58 72%);
  color: #fff;
}

.contact-page-info-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page-info-card>p {
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.contact-page-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.contact-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-page-list li:last-child {
  margin-bottom: 0;
}

.contact-page-list-icon {
  color: #fff;
  font-size: 16px;
  transform: translateY(3px);
}

.contact-page-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

.contact-page-map {
  margin-top: 22px;
  overflow: hidden;
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 136px;
  border: 0;
}

.contact-page-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.contact-page-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #0c86dd;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease-in-out;
}

.contact-page-social a:hover {
  background: #fff;
  color: #0d234f;
}

.contact-page-form {
  padding-top: 2px;
}

.contact-page-label {
  display: block;
  margin-bottom: 6px;
  color: #0070d1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page-input {
  height: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background: #f3f3f3;
  box-shadow: none !important;
  font-size: 12px;
  color: #0b2142;
}

.contact-page-input:focus {
  background: #f7f7f7;
  border-color: #adc2dc;
}

.contact-page-input.form-select {
  color: #9c9c9c;
}

.contact-page-textarea {
  height: 98px;
  min-height: 98px;
  resize: none;
}

.contact-page-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 34px;
  padding: 0 20px;
  border: none;
  border-radius: 3px;
  background: linear-gradient(90deg, #4d9154 0%, #102b58 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.contact-page-submit-btn:hover {
  background: linear-gradient(90deg, #102b58 0%, #4d9154 100%);
}

/* ==================================
   Blog Listing Page
================================== */

.blog-hero {
  padding: 92px 0 78px;
  border-bottom: 1px solid #dfe6ee;
  background: linear-gradient(120deg, rgba(238, 247, 241, .94), rgba(242, 247, 252, .88));
}

.blog-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #439d47;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #0b2142;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.8px;
}

.blog-hero p {
  max-width: 680px;
  margin: 0;
  color: #52657d;
  font-size: 17px;
  line-height: 1.7;
}

.blog-search {
  display: flex;
  align-items: center;
  height: 54px;
  padding-left: 20px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 33, 66, .08);
}

.blog-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #0b2142;
  font-size: 14px;
}

.blog-search button {
  width: 54px;
  height: 100%;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #439d47;
  color: #fff;
}

.blog-content-section {
  padding: 60px 0;
}

.blog-filter-bar {
  margin-bottom: 34px;
}

.blog-filter-list button {
  padding: 9px 16px;
  border: 1px solid #d8e0e9;
  border-radius: 30px;
  background: #fff;
  color: #52657d;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.blog-filter-list button:hover,
.blog-filter-list button.active {
  border-color: #0b2142;
  background: #0b2142;
  color: #fff;
}

.blog-result-count {
  color: #75859a;
  font-size: 12px;
}

.blog-featured-card {
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(11, 33, 66, .09);
}

.blog-featured-image {
  display: block;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #edf3f7;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.035);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 48px;
}

.blog-badge {
  margin-bottom: 20px;
  padding: 7px 11px;
  border-radius: 4px;
  background: #e9f6ea;
  color: #338238;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8290a2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-meta i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #439d47;
}

.blog-featured-content h2 {
  margin: 16px 0;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.25;
}

.blog-featured-content h2 a,
.blog-card h3 a {
  color: #0b2142;
  text-decoration: none;
}

.blog-featured-content p {
  margin-bottom: 24px;
  color: #617086;
  font-size: 14px;
  line-height: 1.75;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-read-link i {
  transition: transform .25s ease;
}

.blog-read-link:hover i {
  transform: translateX(5px);
}

.blog-card {
  overflow: hidden;
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(11, 33, 66, .1);
}

.blog-card-image {
  position: relative;
  display: block;
  height: 225px;
  overflow: hidden;
  background: #fff;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 278px;
  padding: 25px 24px 27px;
}

.blog-card h3 {
  margin: 14px 0 11px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.blog-card h3 a:hover {
  color: #439d47;
}

.blog-card p {
  margin: 0 0 22px;
  color: #68778a;
  font-size: 13px;
  line-height: 1.7;
}

.blog-card .blog-read-link {
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
}

.blog-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dce3eb;
  border-radius: 6px;
  color: #52657d;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.blog-pagination a:hover,
.blog-pagination a.active {
  border-color: #0b2142;
  background: #0b2142;
  color: #fff;
}

.blog-pagination a.disabled {
  opacity: .45;
  pointer-events: none;
}

.blog-newsletter {
  padding: 50px 54px;
  border-radius: 14px;
  background: #0b2142;
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 33, 66, .16);
}

.blog-newsletter .blog-eyebrow {
  margin-bottom: 11px;
}

.blog-newsletter h2 {
  margin: 0 0 9px;
  font-size: 30px;
  font-weight: 900;
}

.blog-newsletter p {
  margin: 0;
  color: #bdc9d8;
  font-size: 14px;
}

.blog-newsletter-form {
  display: flex;
  overflow: hidden;
  height: 50px;
  border-radius: 6px;
  background: #fff;
}

.blog-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: #0b2142;
  font-size: 13px;
}

.blog-newsletter-form button {
  padding: 0 22px;
  border: 0;
  background: #439d47;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
}

.blog-newsletter small {
  display: block;
  margin-top: 10px;
  color: #91a3b9;
  font-size: 10px;
}

/* ==================================
   Blog Details Page
================================== */

.article-hero {
  padding: 36px 0 70px;
  background: linear-gradient(135deg, rgba(241, 248, 243, .96), rgba(241, 246, 251, .92));
  border-bottom: 1px solid #dfe6ee;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  color: #8492a4;
  font-size: 11px;
}

.article-breadcrumb a {
  color: #52657d;
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: #439d47;
}

.article-breadcrumb i {
  font-size: 7px;
}

.article-hero h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  color: #0b2142;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.article-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #5d6e82;
  font-size: 18px;
  line-height: 1.7;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-author-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b2142;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
}

.article-byline strong,
.article-byline span {
  display: block;
}

.article-byline strong {
  color: #0b2142;
  font-size: 12px;
}

.article-byline span {
  margin-top: 3px;
  color: #8190a2;
  font-size: 10px;
}

.article-main-section {
  padding: 80px 0;
}

.article-cover {
  height: 560px;
  margin: -1px 0 72px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 33, 66, .1);
  padding: 15px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-sidebar {
  position: sticky;
  top: 30px;
  padding-right: 26px;
}

.article-sidebar-label {
  margin-bottom: 18px;
  color: #0b2142;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.article-toc {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid #dce3eb;
}

.article-toc a {
  position: relative;
  padding: 8px 0;
  color: #718095;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: #439d47;
}

.article-share {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e7ed;
}

.article-share>span {
  display: block;
  margin-bottom: 12px;
  color: #8391a2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.article-share div {
  display: flex;
  gap: 8px;
}

.article-share a,
.article-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #dce3eb;
  border-radius: 50%;
  background: #fff;
  color: #52657d;
  font-size: 11px;
  text-decoration: none;
  transition: .2s ease;
}

.article-share a:hover,
.article-share button:hover,
.article-share button.copied {
  border-color: #439d47;
  background: #439d47;
  color: #fff;
}

.article-body {
  color: #465970;
  font-size: 16px;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body .article-intro {
  margin-bottom: 38px;
  color: #243b58;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.article-body h2 {
  scroll-margin-top: 30px;
  margin: 52px 0 18px;
  color: #0b2142;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.3;
}

.article-body h3 {
  margin: 32px 0 16px;
  color: #0b2142;
  font-size: 21px;
  font-weight: 900;
}

.article-callout {
  display: flex;
  gap: 18px;
  margin: 38px 0;
  padding: 25px 28px;
  border-left: 4px solid #439d47;
  border-radius: 0 8px 8px 0;
  background: #f1f8f2;
}

.article-callout>i {
  margin-top: 4px;
  color: #439d47;
  font-size: 20px;
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: #0b2142;
  font-size: 14px;
}

.article-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.article-check-list {
  margin: 8px 0 38px;
  padding: 0;
  list-style: none;
}

.article-check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.article-check-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #439d47;
  font-size: 9px;
}

.article-inline-image {
  margin: 42px 0;
}

.article-inline-image img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  padding: 28px;
  border-radius: 10px;
  background: #f2f5f7;
}

.article-inline-image figcaption {
  margin-top: 12px;
  color: #8492a4;
  font-size: 11px;
  font-style: italic;
  text-align: center;
}

.article-body blockquote {
  position: relative;
  margin: 38px 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid #0b2142;
  color: #0b2142;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 50px 0;
  padding: 32px 35px;
  border-radius: 10px;
  background: #0b2142;
}

.article-cta span {
  color: #65b568;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.article-cta h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: 20px;
}

.article-cta a {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 5px;
  background: #439d47;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .6px;
  text-decoration: none;
}

.article-author-box {
  display: flex;
  gap: 20px;
  padding-top: 34px;
  border-top: 1px solid #dfe5eb;
}

.article-author-mark.large {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
}

.article-author-box span {
  color: #439d47;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.article-author-box h3 {
  margin: 4px 0 5px;
  font-size: 18px;
}

.article-author-box p {
  margin: 0;
  color: #718095;
  font-size: 12px;
  line-height: 1.6;
}

.article-related-section {
  padding: 78px 0 90px;
  background: #f4f7f9;
}

.article-section-heading {
  margin-bottom: 34px;
}

.article-section-heading .blog-eyebrow {
  margin-bottom: 8px;
}

.article-section-heading h2 {
  margin: 0;
  color: #0b2142;
  font-size: 36px;
  font-weight: 900;
}

.article-section-heading>a {
  color: #338a3a;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.related-insights-carousel .owl-stage {
  display: flex;
  padding: 8px 0 28px;
}

.related-insights-carousel .owl-item {
  display: flex;
}

.related-insights-carousel .blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.related-insights-carousel .blog-card-body {
  flex: 1;
  height: auto;
  min-height: 285px;
}

.related-insights-carousel .owl-nav {
  position: absolute;
  top: -76px;
  right: 0;
  display: flex;
  gap: 9px;
}

.related-insights-carousel .owl-nav button.owl-prev,
.related-insights-carousel .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid #ced8e3;
  border-radius: 50%;
  background: #fff;
  color: #0b2142;
  font-size: 12px;
  transition: .25s ease;
}

.related-insights-carousel .owl-nav button.owl-prev:hover,
.related-insights-carousel .owl-nav button.owl-next:hover {
  border-color: #439d47;
  background: #439d47;
  color: #fff;
}

.related-insights-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.related-insights-carousel .owl-dots button.owl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3ced9;
  transition: .25s ease;
}

.related-insights-carousel .owl-dots button.owl-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #439d47;
}

/* ==================================
   Product Listing & Details
================================== */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  color: #8492a4;
  font-size: 11px
}

.product-breadcrumb a {
  color: #52657d;
  text-decoration: none
}

.product-breadcrumb a:hover {
  color: #439d47
}

.product-breadcrumb i {
  font-size: 7px
}

.product-list-hero {
  padding: 45px 0 68px;
  border-bottom: 1px solid #dfe6ee;
  background: linear-gradient(120deg, rgba(238, 247, 241, .95), rgba(242, 247, 252, .9))
}

.product-list-hero h1 {
  margin: 0 0 16px;
  color: #0b2142;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1
}

.product-list-hero p {
  max-width: 680px;
  margin: 0;
  color: #607186;
  font-size: 16px;
  line-height: 1.7
}

.catalogue-search {
  display: flex;
  height: 52px;
  overflow: hidden;
  border: 1px solid #ced9e5;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 33, 66, .08)
}

.catalogue-search input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: #0b2142;
  font-size: 12px
}

.catalogue-search button {
  width: 52px;
  border: 0;
  background: #439d47;
  color: #fff
}

.product-catalogue-section {
  padding: 58px 0 85px
}

.product-filter-panel {
  position: sticky;
  top: 20px;
  padding: 25px 22px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff
}

.product-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e9ee
}

.product-filter-heading h2 {
  margin: 0;
  color: #0b2142;
  font-size: 18px;
  font-weight: 900
}

.product-filter-heading button {
  border: 0;
  background: none;
  color: #439d47;
  font-size: 10px;
  font-weight: 700
}

.product-filter-group {
  padding: 22px 0;
  border-bottom: 1px solid #e5e9ee
}

.product-filter-group h3 {
  margin: 0 0 14px;
  color: #0b2142;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px
}

.product-filter-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 11px 0;
  color: #5d6e82;
  font-size: 12px;
  cursor: pointer
}

.product-filter-group input {
  accent-color: #439d47
}

.product-filter-group small {
  margin-left: auto;
  color: #9aa6b5
}

.product-help-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: 8px;
  background: #0b2142;
  color: #fff
}

.product-help-card>i {
  margin-bottom: 15px;
  color: #64b568;
  font-size: 24px
}

.product-help-card h3 {
  font-size: 16px;
  font-weight: 900
}

.product-help-card p {
  color: #bdc9d8;
  font-size: 11px;
  line-height: 1.6
}

.product-help-card a {
  color: #67bd6b;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .5px
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e6ed
}

.product-toolbar strong {
  color: #0b2142;
  font-size: 14px
}

.product-toolbar>div span {
  margin-left: 5px;
  color: #8391a2;
  font-size: 11px
}

.product-toolbar label {
  color: #778699;
  font-size: 11px
}

.product-toolbar select {
  margin-left: 8px;
  padding: 8px 28px 8px 10px;
  border: 1px solid #d8e0e8;
  border-radius: 5px;
  background: #fff;
  color: #0b2142;
  font-size: 11px
}

.product-filter-toggle {
  display: none
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff;
  transition: .3s ease
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 17px 38px rgba(11, 33, 66, .1)
}

.product-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 235px;
  padding: 28px;
  overflow: hidden;
  background: #f1f5f7
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s ease
}

.product-card:hover .product-card-image img {
  transform: scale(1.07)
}

.product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 9px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .8px
}

.product-label.green {
  background: #439d47
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px
}

.product-card-content>span {
  color: #439d47;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px
}

.product-card-content h2 {
  margin: 10px 0 9px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35
}

.product-card-content h2 a {
  color: #0b2142;
  text-decoration: none
}

.product-card-content p {
  margin: 0 0 20px;
  color: #718095;
  font-size: 12px;
  line-height: 1.65
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #fff;
  padding: 10px 20px;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .5px;
  background: linear-gradient(90deg, #2f7d45 0%, #0d234f 100%);
}

.product-card-link:hover {
  color: #fff;
}

.product-detail-section {
  padding: 35px 0 78px
}

.product-gallery {
  position: sticky;
  top: 25px
}

.product-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 510px;
  padding: 60px;
  border-radius: 12px;
  background: #f1f5f7
}

.product-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px
}

.product-thumbnails button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 76px;
  padding: 10px;
  border: 1px solid #dce3ea;
  border-radius: 7px;
  background: #fff
}

.product-thumbnails button.active {
  border: 2px solid #439d47
}

.product-thumbnails img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.product-detail-copy {
  padding-top: 18px
}

.product-detail-category {
  color: #439d47;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px
}

.product-detail-copy h1 {
  margin: 13px 0 18px;
  color: #0b2142;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.15
}

.product-detail-lead {
  color: #617287;
  font-size: 16px;
  line-height: 1.75
}

.product-feature-list {
  margin: 28px 0
}

.product-feature-list>div {
  display: flex;
  gap: 13px;
  margin: 17px 0
}

.product-feature-list i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #439d47;
  font-size: 9px
}

.product-feature-list strong,
.product-feature-list span {
  display: block
}

.product-feature-list strong {
  margin-bottom: 3px;
  color: #0b2142;
  font-size: 13px
}

.product-feature-list span {
  color: #7a8899;
  font-size: 11px
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 25px 0;
  border-top: 1px solid #e1e7ed;
  border-bottom: 1px solid #e1e7ed
}

.product-primary-btn,
.product-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 19px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .5px
}

.product-primary-btn {
  background: #439d47;
  color: #fff
}

.product-secondary-btn {
  border: 1px solid #0b2142;
  color: #0b2142
}

.product-support-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  color: #738297;
  font-size: 11px
}

.product-support-note i {
  color: #439d47;
  font-size: 18px
}

.product-support-note strong {
  color: #0b2142
}

.product-info-section {
  padding: 75px 0;
  background: #f5f7f9
}

.product-info-block h2,
.product-section-heading h2 {
  margin: 0 0 20px;
  color: #0b2142;
  font-size: 34px;
  font-weight: 900
}

.product-info-block>p {
  color: #5e7086;
  font-size: 14px;
  line-height: 1.85
}

.product-info-block h3 {
  margin: 34px 0 15px;
  color: #0b2142;
  font-size: 18px;
  font-weight: 900
}

.product-applications span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid #dfe5eb;
  border-radius: 6px;
  background: #fff;
  color: #40546c;
  font-size: 11px
}

.product-applications i {
  color: #439d47
}

.product-spec-card {
  padding: 28px;
  border-radius: 10px;
  background: #0b2142;
  color: #fff
}

.product-spec-card h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 900
}

.product-spec-card dl {
  margin: 0
}

.product-spec-card dl>div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.product-spec-card dt {
  color: #9fb0c4;
  font-size: 10px;
  font-weight: 400
}

.product-spec-card dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: right
}

.product-spec-card a {
  display: block;
  margin-top: 22px;
  padding: 12px;
  border-radius: 4px;
  background: #439d47;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-decoration: none
}

.product-related-section {
  padding: 75px 0 90px
}

.product-section-heading {
  margin-bottom: 30px
}

.product-section-heading .blog-eyebrow {
  margin-bottom: 8px
}


.related-products-carousel .owl-stage {
  display: flex;
  padding: 8px 0 28px
}

.related-products-carousel .owl-item {
  display: flex
}

.related-products-carousel .product-card {
  width: 100%
}

.related-products-carousel .owl-nav {
  position: absolute;
  top: -82px;
  right: 0;
  display: flex;
  gap: 9px
}

.related-products-carousel .owl-nav button.owl-prev,
.related-products-carousel .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid #ced8e3;
  border-radius: 50%;
  background: #fff;
  color: #0b2142;
  font-size: 12px;
  transition: .25s
}

.related-products-carousel .owl-nav button:hover {
  border-color: #439d47 !important;
  background: #439d47 !important;
  color: #fff !important
}

.related-products-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 7px
}

.related-products-carousel .owl-dots button.owl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3ced9
}

.related-products-carousel .owl-dots button.owl-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #439d47
}

.product-main-image {
  overflow: hidden
}

.product-main-image>img {
  transition: opacity .28s ease, transform .28s ease
}

.product-main-image>img.changing {
  opacity: 0;
  transform: scale(.97)
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d4dde6;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #0b2142;
  font-size: 11px;
  box-shadow: 0 7px 20px rgba(11, 33, 66, .1);
  transform: translateY(-50%);
  transition: .25s
}

.product-gallery-arrow:hover {
  border-color: #439d47;
  background: #439d47;
  color: #fff
}

.product-gallery-prev {
  left: 18px
}

.product-gallery-next {
  right: 18px
}

.product-gallery-count {
  position: absolute;
  right: 17px;
  bottom: 15px;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(11, 33, 66, .82);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px
}

.product-gallery:focus {
  outline: none
}

.product-gallery:focus-visible .product-main-image {
  outline: 2px solid #439d47;
  outline-offset: 3px
}
/* product category page css */
.product-category-section{
  padding: 50px 0 80px;
}
.product-category-section .section-title{
  margin-bottom: 40px;
}
.product-category-section .product-category-grid{
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}


.product-category-section .product-category-grid .capability-card {
  width: calc(33.333% - 15px);
}

span.wpcf7-not-valid-tip {
    font-size: 12px;
}

.wpcf7-response-output {
    font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
    border: 1px solid #00a0d2;
}

.product-catalogue-section .equipment-image {
  min-height: 300px;
}
.product-catalogue-section .equipment-image img {
   object-fit: contain;
  object-position: center center;
}