:root {
  --bdx-primary: #db0505;
  --bdx-primary-dark: #b40404;
  --bdx-text: #1f2937;
  --bdx-muted: #6b7280;
  --bdx-border: #e5e7eb;
  --bdx-bg: #fff;
  --bdx-soft: #fff5f5;
  --bdx-soft-2: #f8fafc;
  --bdx-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --bdx-radius: 16px;
}
body {
  font-family: "Kanit";
}
.bdx-header {
  position: relative;
  z-index: 999;
  background: #fff;
  font-family: inherit;
}
.bdx-topbar {
  color: #fff;
  font-size: 13px;
}
.bdx-topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.bdx-topbar-left,
.bdx-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.bdx-topbar-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bdx-topbar-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  opacity: 0.95;
}
.bdx-lang-list,
.bdx-translate-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bdx-lang-link,
.bdx-translate-list a,
.bdx-topbar-contact {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.bdx-lang-link,
.bdx-translate-list a {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
}
.bdx-lang-link:hover,
.bdx-lang-link.active,
.bdx-translate-list a:hover {
  background: #fff;
  color: var(--bdx-primary);
}
.bdx-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.bdx-topbar-contact:hover {
  color: #ffe0e0;
}
.bdx-header-middle {
  padding: 18px 0;
  border-bottom: 1px solid var(--bdx-border);
  background: #fff;
}
.bdx-logo-wrap {
  display: flex;
  align-items: center;
  min-height: 72px;
}
.bdx-logo-img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}
.bdx-support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  min-height: 72px;
}
.bdx-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bdx-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 48px;
  box-shadow: 0 8px 18px rgba(219, 5, 5, 0.2);
}
.bdx-support-content {
  line-height: 1.25;
}
.bdx-support-label {
  display: block;
  font-size: 12px;
  color: var(--bdx-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bdx-support-phone a {
  color: var(--bdx-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.bdx-support-phone a:hover {
  color: var(--bdx-primary);
}
.bdx-search-form {
  width: 100%;
}
.bdx-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bdx-border);
  border-radius: 999px;
  min-height: 62px;
  padding: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.bdx-search-icon {
  position: absolute;
  left: 22px;
  color: var(--bdx-muted);
  font-size: 18px;
  z-index: 2;
}
.bdx-search-box input.form-control {
  border: 0;
  box-shadow: none;
  padding-left: 48px;
  padding-right: 150px;
  height: 50px;
  border-radius: 999px;
  font-size: 15px;
  background: transparent;
}
.bdx-search-box input.form-control:focus {
  box-shadow: none;
}
.bdx-search-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--bdx-primary),
    var(--bdx-primary-dark)
  );
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.bdx-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(219, 5, 5, 0.24);
}
.bdx-header-nav {
  background: #fff;
  border-top: 1px solid #f6f6f6;
}
.bdx-nav {
  width: 100%;
}
.bdx-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.bdx-menu-item {
  position: relative;
}
.bdx-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}
.bdx-menu-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.bdx-menu-link:hover {
  color: #fff;
}
.bdx-menu-link:hover::after,
.bdx-menu-item:hover .bdx-menu-link::after {
  transform: scaleX(1);
}
.bdx-menu-link i {
  font-size: 12px;
}
.bdx-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  box-shadow: var(--bdx-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 50;
}
.bdx-menu-item:hover .bdx-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bdx-submenu li a {
  display: block;
  padding: 11px 18px;
  color: var(--bdx-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.bdx-submenu li a:hover {
  background: var(--bdx-soft);
  color: var(--bdx-primary);
  padding-left: 22px;
}
.bdx-mobile-header {
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--bdx-border);
  background: #fff;
}
.bdx-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.bdx-mobile-logo img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
}
.bdx-mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bdx-mobile-icon-btn,
.bdx-mobile-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.25s ease;
}
.bdx-mobile-call {
  background: #fff1f1;
  color: var(--bdx-primary);
  border: 1px solid #ffd7d7;
}
.bdx-mobile-toggle {
  background: linear-gradient(
    135deg,
    var(--bdx-primary),
    var(--bdx-primary-dark)
  );
  color: #fff;
  box-shadow: 0 8px 18px rgba(219, 5, 5, 0.2);
}
.bdx-mobile-search-wrap .bdx-search-box {
  min-height: 56px;
}
.bdx-mobile-search-wrap .bdx-search-box input.form-control {
  height: 44px;
  padding-right: 110px;
  font-size: 14px;
}
.bdx-mobile-search-wrap .bdx-search-btn {
  padding: 0 18px;
  font-size: 13px;
}
.bdx-mobile-offcanvas {
  border-left: 0;
}
.bdx-mobile-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--bdx-border);
  padding: 18px 18px 14px;
}
.bdx-mobile-offcanvas .offcanvas-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bdx-text);
}
.bdx-mobile-offcanvas .offcanvas-body {
  padding: 18px;
  background: #fff;
}
.bdx-mobile-box {
  background: #fff;
  border: 1px solid #f1f3f5;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.bdx-mobile-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bdx-text);
  margin-bottom: 12px;
}
.bdx-mobile-lang-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bdx-mobile-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff5f5;
  color: var(--bdx-primary);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #ffd9d9;
  transition: all 0.25s ease;
}
.bdx-mobile-lang-link.active,
.bdx-mobile-lang-link:hover {
  background: var(--bdx-primary);
  color: #fff;
  border-color: var(--bdx-primary);
}
.bdx-mobile-menu-list,
.bdx-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bdx-mobile-menu-list > li {
  border-bottom: 1px solid #f1f3f5;
  padding: 12px 0;
}
.bdx-mobile-menu-list > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.bdx-mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bdx-mobile-menu-link {
  color: var(--bdx-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  flex: 1;
}
.bdx-mobile-menu-link:hover {
  color: var(--bdx-primary);
}
.bdx-mobile-sub-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #f1d6d6;
  background: #fff5f5;
  color: var(--bdx-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}
.bdx-mobile-submenu {
  padding-top: 10px;
  padding-left: 12px;
}
.bdx-mobile-submenu li {
  padding: 6px 0;
}
.bdx-mobile-submenu li a {
  color: var(--bdx-muted);
  text-decoration: none;
  font-size: 14px;
}
.bdx-mobile-submenu li a:hover {
  color: var(--bdx-primary);
}
.bdx-mobile-contact-list {
  display: grid;
  gap: 10px;
}
.bdx-mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.bdx-mobile-contact-phone {
  background: linear-gradient(
    135deg,
    var(--bdx-primary),
    var(--bdx-primary-dark)
  );
  color: #fff;
}
.bdx-mobile-contact-line {
  background: #ecfff3;
  color: #00b900;
  border: 1px solid #baf0c9;
}
.bdx-mobile-contact-facebook {
  background: #eef4ff;
  color: #1877f2;
  border: 1px solid #cdddff;
}
@media (max-width: 575.98px) {
  .bdx-mobile-logo img {
    max-height: 48px;
  }
  .bdx-mobile-icon-btn,
  .bdx-mobile-toggle {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .bdx-mobile-offcanvas .offcanvas-body {
    padding: 14px;
  }
  .bdx-mobile-box {
    padding: 14px;
    border-radius: 16px;
  }
}
.bdx-topbar-left > .bdx-topbar-group,
.bdx-topbar-right > .bdx-topbar-contact {
  position: relative;
}
.bdx-topbar-left > .bdx-topbar-group:not(:last-child)::after,
.bdx-topbar-right > .bdx-topbar-contact:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.bdx-footer {
  position: relative;
  background-color: var(--bdx-primary);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.bdx-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 26%
    );
  pointer-events: none;
}
.bdx-footer-heading-wrap {
  margin-bottom: 4px;
}
.bdx-footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bdx-footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.bdx-footer-about {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.9;
}
.bdx-footer-links li {
  margin-bottom: 12px;
}
.bdx-footer-links li:last-child {
  margin-bottom: 0;
}
.bdx-footer-links a,
.bdx-footer-contact a,
.bdx-footer-mini-links a,
.bdx-copyright a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.2s ease;
}
.bdx-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
}
.bdx-footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.65;
  transition: all 0.2s ease;
  flex: 0 0 auto;
}
.bdx-footer-links a:hover {
  color: #ffe082;
  transform: translateX(4px);
}
.bdx-footer-links a:hover::before {
  background: #ffe082;
  opacity: 1;
}
.bdx-footer-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffe082;
  text-decoration: none;
}
.bdx-footer-more:hover {
  color: #fff;
}
.bdx-footer-contact ul li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
  word-break: break-word;
}
.bdx-footer-contact ul li:last-child {
  margin-bottom: 0;
}
.bdx-footer-contact a:hover,
.bdx-footer-mini-links a:hover,
.bdx-copyright a:hover {
  color: #ffe082;
}
.bdx-contact-label {
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}
.bdx-footer-fanpage {
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}
.bdx-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
  padding: 16px 0;
}
.bdx-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}
.bdx-footer-mini-links a {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .bdx-footer-card {
    padding: 22px 18px;
  }
  .bdx-footer-title {
    font-size: 1.1rem;
  }
  .bdx-footer-about,
  .bdx-footer-links a,
  .bdx-footer-contact ul li {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .bdx-footer {
    padding-top: 8px;
  }
  .bdx-footer-card {
    border-radius: 14px;
    padding: 20px 16px;
  }
  .bdx-footer-badge {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  .bdx-footer-title {
    font-size: 1rem;
  }
  .bdx-footer-about,
  .bdx-footer-links a,
  .bdx-footer-contact ul li,
  .bdx-copyright,
  .bdx-footer-mini-links a {
    font-size: 13px;
  }
  .bdx-footer-fanpage {
    max-width: 100%;
  }
}
.breadcrumb-area {
  background: #f8f9fa;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb-content ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.breadcrumb-content ul li {
  display: inline-flex;
  align-items: center;
  color: #6c757d;
}
.breadcrumb-content ul li a {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.breadcrumb-content ul li a:hover {
  color: #db0505;
}
.breadcrumb-content ul li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #adb5bd;
}
.breadcrumb-content ul li.active {
  color: #db0505;
  font-weight: 600;
}
#section1 {
  position: relative;
  padding: 90px 0 60px;
  background:
    radial-gradient(
      circle at top right,
      rgba(219, 5, 5, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #fff5f5 0, #fff 100%);
  overflow: hidden;
}
#section1 .ps-hero-title {
  font-size: 32px;
  line-height: normal;
  font-weight: 600;
  color: #db0505;
  margin-bottom: 1rem;
}
#section1 .ps-hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.5rem;
}
#section1 .ps-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #db0505;
  background: rgba(219, 5, 5, 0.08);
  border: 1px solid rgba(219, 5, 5, 0.14);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
#section1 .ps-btn-primary {
  background: #db0505;
  color: #fff;
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  border: 1px solid #db0505;
  transition: 0.3s;
}
#section1 .ps-btn-primary:hover {
  background: #b50303;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(219, 5, 5, 0.3);
}
#section1 .ps-btn-outline {
  background: #fff;
  color: #db0505;
  border: 1px solid rgba(219, 5, 5, 0.3);
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  transition: 0.3s;
}
#section1 .ps-btn-outline:hover {
  background: #fff5f5;
  transform: translateY(-3px);
}
#section1 .ps-btn-line {
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  transition: 0.3s;
}
#section1 .ps-btn-line:hover {
  background: #db0505;
  transform: translateY(-3px);
}
#section1 .ps-featured-snippet {
  background: #fff;
  border-left: 4px solid #db0505;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-top: 1.5rem;
  transition: 0.3s;
}
#section1 .ps-mini-points {
  margin-top: 1.5rem;
}
#section1 .ps-featured-snippet:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(219, 5, 5, 0.2);
}
#section1 .ps-featured-snippet h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #db0505;
}
#section1 .ps-featured-snippet p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}
#section1 .ps-mini-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#section1 .ps-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(219, 5, 5, 0.2);
}
#section1 .ps-mini-icon {
  width: 40px;
  height: 40px;
  background: rgba(219, 5, 5, 0.1);
  color: #db0505;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#section1 .ps-main-image {
  height: 330px;
  object-fit: scale-down;
  border-radius: 20px;
  transition: 0.3s;
}
#section1 .ps-main-image:hover {
  transform: scale(1.03);
}
#section1 .ps-thumb-card {
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}
#section1 .ps-thumb-card a {
  color: #db0505;
  text-decoration: unset;
}
#section1 .ps-thumb-card p {
  color: #db0505;
  min-height: 48px;
}
#section1 .ps-thumb-card img {
  width: 100%;
  height: auto;
}
#section1 .ps-thumb-card:hover {
  transform: translateY(-4px);
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(219, 5, 5, 0.18);
}
#section1 .ps-intro-section {
  padding: 60px 0;
}
#section1 .ps-section-heading h2 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 1rem;
  color: #db0505;
}
#section1 .ps-service-box h3,
#section1 .ps-customer-box h3 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 1rem;
  color: #db0505;
}
#section1 .ps-stat-card {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}
#section1 .ps-stat-card strong {
  color: #db0505;
}
#section1 .ps-customer-grid {
  display: grid;
  grid-gap: 10px;
}
#section1 .ps-service-box,
#section1 .ps-customer-box {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#section1 .ps-service-box:hover,
#section1 .ps-customer-box:hover {
  transform: translateY(-4px);
}
#section1 .ps-list-card {
  display: flex;
  gap: 0.6rem;
  padding: 0.8rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#section1 .ps-list-card:hover {
  background: #db0505;
  color: #fff;
}
#section1 .ps-customer-item {
  padding: 0.9rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 600;
  transition: 0.3s;
}
#section1 .ps-customer-item:hover {
  background: #db0505;
  color: #fff;
}
#section1 .ps-section-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #db0505;
  background: rgba(219, 5, 5, 0.08);
  border: 1px solid rgba(219, 5, 5, 0.14);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #section1 .ps-main-image {
    height: 320px;
  }
}
#section35 .ps-why-section {
  padding: 80px 0;
  background: #fff;
}
#section35 .ps-why-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.8rem;
}
#section35 .ps-why-head p {
  color: #555;
  max-width: 700px;
  margin: auto;
  margin-bottom: 2.5rem;
}
#section35 .ps-why-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: left;
}
#section35 .ps-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(219, 5, 5, 0.18);
  border-color: rgba(219, 5, 5, 0.2);
}
#section35 .ps-why-icon {
  width: 50px;
  height: 50px;
  background: rgba(219, 5, 5, 0.1);
  color: #db0505;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: 0.3s;
}
#section35 .ps-why-card:hover .ps-why-icon {
  background: #db0505;
  color: #fff;
}
#section35 .ps-why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111;
}
#section35 .ps-why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #section35 .ps-why-head h2 {
    font-size: 1.7rem;
  }
}
#section36 .ps-glove-section {
  padding: 80px 0;
  background: #fff7f7;
}
#section36 .ps-glove-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.8rem;
}
#section36 .ps-glove-head p {
  color: #555;
  max-width: 700px;
  margin: auto;
  margin-bottom: 2.5rem;
}
#section36 .ps-glove-box {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}
#section36 .ps-glove-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(219, 5, 5, 0.18);
}
#section36 .ps-glove-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #db0505;
}
#section36 .ps-glove-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#section36 .ps-glove-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  font-weight: 600;
  color: #222;
}
#section36 .ps-glove-item i {
  color: #db0505;
  font-size: 1.1rem;
}
#section36 .ps-glove-item:hover {
  background: #db0505;
  color: #fff;
  transform: translateX(6px);
}
#section36 .ps-glove-item:hover i {
  color: #fff;
}
@media (max-width: 768px) {
  #section36 .ps-glove-head h2 {
    font-size: 1.7rem;
  }
}
#section15 {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0, #fff7f7 100%);
}
#section15 .ps-oem-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin-bottom: 1rem;
}
#section15 .ps-oem-badge {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(219, 5, 5, 0.08);
  border: 1px solid rgba(219, 5, 5, 0.15);
  color: #db0505;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
#section15 .ps-oem-desc {
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
#section15 .ps-oem-group {
  margin-bottom: 1.5rem;
}
#section15 .ps-oem-group h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}
#section15 .ps-oem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#section15 .ps-oem-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: #222;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
#section15 .ps-oem-item i {
  color: #db0505;
  font-size: 1.1rem;
}
#section15 .ps-oem-item:hover {
  transform: translateX(6px);
  background: #db0505;
  color: #fff;
  box-shadow: 0 14px 28px rgba(219, 5, 5, 0.18);
}
#section15 .ps-oem-item:hover i {
  color: #fff;
}
#section15 .ps-oem-card {
  display: flex;
  gap: 0.9rem;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#section15 .ps-oem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(219, 5, 5, 0.18);
  box-shadow: 0 18px 36px rgba(219, 5, 5, 0.16);
}
#section15 .ps-oem-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(219, 5, 5, 0.1);
  color: #db0505;
  font-size: 1.2rem;
  transition: 0.3s;
}
#section15 .ps-oem-card:hover .ps-oem-icon {
  background: #db0505;
  color: #fff;
}
#section15 .ps-oem-text strong {
  display: block;
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.35rem;
}
#section15 .ps-oem-text p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #555;
}
#section15 .ps-oem-btn-primary {
  background: #db0505;
  color: #fff;
  border: 1px solid #db0505;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: 0.3s;
}
#section15 .ps-oem-btn-primary:hover {
  background: #b50303;
  border-color: #b50303;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(219, 5, 5, 0.24);
}
#section15 .ps-oem-visual {
  position: relative;
}
#section15 .ps-oem-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: #fff;
}
#section15 .ps-oem-main-image {
  width: 100%;
  height: 800px;
  object-fit: cover;
  transition: 0.3s;
}
#section15 .ps-oem-image-wrap:hover .ps-oem-main-image {
  transform: scale(1.04);
}
#section15 .ps-oem-info-box {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
#section15 .ps-oem-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  color: #222;
  transition: 0.3s;
}
#section15 .ps-oem-info-item i {
  font-size: 1.2rem;
  color: #db0505;
}
#section15 .ps-oem-info-item:hover {
  transform: translateY(-5px);
  background: #db0505;
  color: #fff;
  box-shadow: 0 18px 36px rgba(219, 5, 5, 0.18);
}
#section15 .ps-oem-info-item:hover i {
  color: #fff;
}
@media (max-width: 991.98px) {
  #section15 .ps-oem-main-image {
    height: 420px;
  }
}
@media (max-width: 767.98px) {
  #section15 .ps-oem-content h2 {
    font-size: 1.75rem;
  }
  #section15 .ps-oem-info-box {
    grid-template-columns: 1fr;
  }
  #section15 .ps-oem-main-image {
    height: 320px;
  }
}
#section38 {
  padding: 80px 0;
  background: #fff;
}
#section38 .ps-client-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.7rem;
}
#section38 .ps-client-head p {
  color: #555;
  margin-bottom: 2rem;
}
#section38 .ps-client-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff4f5;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}
#section38 .ps-client-type i {
  font-size: 1.3rem;
  color: #db0505;
}
#section38 .ps-client-type:hover {
  background: #db0505;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(219, 5, 5, 0.2);
}
#section38 .ps-client-type:hover i {
  color: #fff;
}
#section38 .ps-logo-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: 0.3s;
}
#section38 .ps-logo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
#section38 .ps-logo-card:hover {
  transform: translateY(-4px);
}
#section38 .ps-logo-card:hover img {
  filter: none;
  opacity: 1;
}
#section38 .ps-gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
#section38 .ps-gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.3s;
}
#section38 .ps-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-weight: 700;
}
#section38 .ps-gallery-card:hover img {
  transform: scale(1.05);
}
.prosiry-highlight {
  display: inline-block;
  background: rgba(204, 0, 0, 0.08);
  padding: 8px 14px;
  border-left: 4px solid #c00;
  color: #222;
  font-style: normal;
  border-radius: 4px;
}
.prosiry-list {
  margin: 0;
  padding: 0;
}
.prosiry-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px dashed #e9e9e9;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.prosiry-list li::before {
  content: "✔";
  position: absolute;
  top: 12px;
  left: 0;
  color: #c00;
  font-weight: 700;
}
.prosiry-main-image {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}
.prosiry-main-image:hover {
  transform: scale(1.03);
}
.btn-quote-main {
  min-width: 220px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
}
.btn-product-sub {
  min-width: 220px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #c00;
  border-color: #c00;
}
.btn-product-sub:hover {
  background-color: #a30000;
  border-color: #a30000;
}
.prosiry-text-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #c00;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.prosiry-text-link:hover {
  color: #a30000;
  border-bottom-color: #a30000;
}

#section8, #section15 {
    background: linear-gradient(180deg, #fff8f8 0, #fff 100%)!important;
}
@media (max-width: 991.98px) {
  .item1 .wrap {
    padding: 30px 24px;
  }
  .item1 h1 {
    font-size: 28px;
  }
  .item1 .section-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .item1 .wrap {
    padding: 24px 18px;
    border-radius: 12px;
  }
  .item1 h1 {
    font-size: 24px;
  }
  .item1 p,
  .prosiry-list li {
    font-size: 15px;
  }
  .item1 .section-title {
    font-size: 20px;
  }
  .btn-quote-main,
  .btn-product-sub {
    width: 100%;
    min-width: 100%;
  }
  .prosiry-text-link {
    text-align: center;
  }
}
.item7 {
  margin: 60px 0;
}
.glove-content-card {
  background: #fff;
  border: 1px solid rgba(219, 5, 5, 0.08);
  border-radius: 24px;
  padding: 32px 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}
.glove-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(219, 5, 5, 0.08);
  border-color: rgba(219, 5, 5, 0.16);
}
.glove-title {
  font-size: 34px;
  font-weight: 800;
  color: #db0505;
  margin: 0 0 18px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}
.glove-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #db0505 0, #ff7f7f 100%);
}
.glove-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #4f4f4f;
  margin-bottom: 16px;
}
.glove-content strong {
  color: #db0505;
  font-weight: 700;
}
.glove-content a {
  color: #db0505;
  font-weight: 600;
  text-decoration: none;
}
.glove-content a:hover {
  color: #a80404;
  text-decoration: underline;
}
.industry-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 26px 0 16px;
}
.industry-item {
  position: relative;
  padding: 13px 16px 13px 46px;
  background: #fff;
  border: 1px solid rgba(219, 5, 5, 0.1);
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  color: #333;
  min-height: 100%;
}
.industry-item::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #db0505;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(219, 5, 5, 0.25);
}
.industry-item:hover {
  transform: translateX(6px);
  color: #db0505;
  border-color: rgba(219, 5, 5, 0.2);
  box-shadow: 0 10px 24px rgba(219, 5, 5, 0.1);
}
.glove-image-box {
  overflow: hidden;
  border-radius: 24px;
  transition: all 0.35s ease;
}
.glove-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(219, 5, 5, 0.1);
}
.glove-image {
  display: block;
  border-radius: 24px;
  transition: transform 0.45s ease;
}
.glove-image-box:hover .glove-image {
  transform: scale(1.05);
}
.feature-card {
  background: linear-gradient(180deg, #fff 0, #fff6f6 100%);
  padding: 24px 24px 18px;
  border: 1px solid rgba(219, 5, 5, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(219, 5, 5, 0.1) 0,
    rgba(219, 5, 5, 0) 72%
  );
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(219, 5, 5, 0.1);
  border-color: rgba(219, 5, 5, 0.18);
}
.feature-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  color: #db0505;
  margin: 0 0 16px;
  position: relative;
  z-index: 2;
}
.feature-list {
  position: relative;
  z-index: 2;
}
.feature-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  margin-bottom: 10px;
  background: #fff;
  border-left: 4px solid #db0505;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}
.feature-list li:last-child {
  margin-bottom: 0;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #db0505;
  font-size: 17px;
  font-weight: 800;
}
@media (max-width: 1199.98px) {
  .glove-title {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .glove-content-card {
    padding: 28px 24px;
  }
}
@media (max-width: 767.98px) {
  .glove-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  .glove-title {
    font-size: 26px;
  }
  .industry-title {
    font-size: 20px;
  }
  .glove-content p {
    font-size: 15px;
    line-height: 1.8;
  }
  .feature-title {
    font-size: 19px;
  }
  .industry-item,
  .feature-list li {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .glove-content-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .glove-title {
    font-size: 23px;
  }
  .glove-image-box,
  .glove-image,
  .feature-card {
    border-radius: 18px;
  }
  .feature-card {
    padding: 20px 16px 14px;
  }
  .industry-item {
    padding: 12px 14px 12px 40px;
  }
  .feature-list li {
    padding: 12px 12px 12px 38px;
  }
}
#section18 {
  background: #fff;
  padding: 60px 0 !important;
}
.faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #db0505;
  margin-bottom: 18px;
  position: relative;
}
.faq-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #db0505;
  display: block;
  margin: 15px auto 0;
  border-radius: 999px;
}
.faq-subtitle {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 0;
}
.faq-subtitle a {
  color: #222;
  text-decoration: none;
  transition: color 0.25s ease;
}
.faq-subtitle a:hover {
  color: #db0505;
}
.faq-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: #db0505;
  --bs-accordion-active-bg: #fff;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
.faq-card {
  border: 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  overflow: hidden;
  background: #fff;
}
.faq-card:hover {
  background: #fafafa;
  transform: translateY(-2px);
}
.faq-header {
  margin: 0;
}
.faq-btn {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 20px 52px 20px 20px;
  background: #fff;
  box-shadow: none;
}
.faq-btn:not(.collapsed) {
  color: #db0505;
  background: #fff;
  box-shadow: none;
}
.faq-btn:hover {
  color: #db0505;
  background: #fff;
}
.faq-btn::after {
  display: none !important;
}
.faq-btn::before {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: #db0505;
  transition: all 0.3s ease;
  line-height: 1;
}
.faq-btn:not(.collapsed)::before {
  content: "–";
}
.faq-answer {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  padding: 20px;
  background: #fafafa;
  border-left: 4px solid #db0505;
}
#section18 {
  animation: fadeFaq 1s ease;
}
@keyframes fadeFaq {
  0 {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  .faq-title {
    font-size: 30px;
  }
  .faq-subtitle {
    font-size: 21px;
  }
}
@media (max-width: 767.98px) {
  .faq-title {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .faq-subtitle {
    font-size: 18px;
  }
  .faq-btn {
    font-size: 16px;
    padding: 18px 46px 18px 18px;
  }
  .faq-answer {
    font-size: 15px;
    padding: 18px;
  }
}
#section37 {
  padding: 60px 15px;
  background: linear-gradient(180deg, #fff8f8 0, #fff 100%);
}
#section37 .cta14-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(219, 5, 5, 0.1);
  border-radius: 18px;
  padding: 42px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  animation: ctaFadeUp 0.9s ease both;
  transition: all 0.35s ease;
}
#section37 .cta14-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(219, 5, 5, 0.12);
  border-color: rgba(219, 5, 5, 0.2);
}
#section37 .cta14-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #db0505;
}
#section37 .cta14-title {
  font-size: 34px;
  font-weight: 800;
  color: #db0505;
  line-height: 1.4;
  margin-bottom: 24px;
}
#section37 .cta14-contact {
  font-size: 19px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 500;
}
#section37 .cta14-contact a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
#section37 .cta14-contact a:hover {
  color: #db0505;
  text-decoration: none;
}
#section37 .cta14-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
#section37 .cta14-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  min-width: 250px;
  text-align: center;
}
#section37 .cta14-btn-primary {
  background: #db0505;
  color: #fff !important;
  border: 2px solid #db0505;
  box-shadow: 0 8px 20px rgba(219, 5, 5, 0.18);
}
#section37 .cta14-btn-primary:hover {
  background: #b90404;
  border-color: #b90404;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(219, 5, 5, 0.24);
}
#section37 .cta14-btn-line {
  background: #fff;
  color: #db0505 !important;
  border: 2px solid #db0505;
}
#section37 .cta14-btn-line:hover {
  background: #db0505;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(219, 5, 5, 0.18);
}
@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  #section37 .cta14-box {
    padding: 36px 24px;
  }
  #section37 .cta14-title {
    font-size: 29px;
  }
  #section37 .cta14-contact {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  #section37 {
    padding: 40px 12px;
  }
  #section37 .cta14-box {
    padding: 30px 20px;
    border-radius: 14px;
  }
  #section37 .cta14-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
  #section37 .cta14-contact {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
  }
  #section37 .cta14-btn-group {
    flex-direction: column;
    gap: 12px;
  }
  #section37 .cta14-btn {
    width: 100%;
    min-width: auto;
    font-size: 15px;
    padding: 13px 20px;
  }
}
