/* Product tabs: one full panel, not individual cards */
.custom-tabs-container {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
}

.custom-tab-content {
  display: none;
  padding: 45px 30px;
  background: rgba(255,255,255,0.06);
}

.custom-tab-content.active {
  display: block;
}

/* Remove individual card boxes */
.custom-tab-content .service-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Keep spacing between manufacturers */
.custom-tab-content .row > [class*="col-"] {
  margin-bottom: 50px;
}

/* Keep logo white boxes */
.custom-tab-content .service-thumb {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.custom-tab-content .service-thumb img {
  border-radius: 8px;
}

.custom-tabs-container {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
}

.custom-tabs {
  display: flex;
  background: #0f253d;
}

.custom-tab-button {
  flex: 1;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.custom-tab-button.active {
  background: #078ab0;
  color: #fff;
}

.custom-tab-content {
  display: none;
  padding: 45px 30px;
  background: rgba(255,255,255,0.06);
}

.custom-tab-content.active {
  display: block;
}

.custom-tab-content .service-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.custom-tab-content .row > [class*="col-"] {
  margin-bottom: 50px;
}

.custom-tab-content .service-thumb {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.custom-tab-content .service-thumb img {
  border-radius: 8px;
}


/* Press Release Slide In */
.press-release-popup {
  position: fixed;
  top: 0;
  right: -420px;
  width: 500px;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: -10px 0 40px rgba(0,0,0,0.18);
  transition: right 0.45s ease;
  padding: 60px 40px;
  overflow-y: auto;
}

.press-release-popup.active {
  right: 0;
}

.press-release-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.press-release-content h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #0e4f8a;
  margin-bottom: 30px;
}

.press-release-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 35px;
}

.press-release-button {
  display: inline-block;
  background: #078ab0;
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.press-release-button:hover {
  background: #056e8c;
  color: #fff;
}

@media (max-width: 768px) {

  .press-release-popup {
    width: 100%;
    right: -100%;
    padding: 50px 30px;
  }

  .press-release-content h2 {
    font-size: 34px;
  }

}

.service-thumb img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 25px;
}


