body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo 2", Sans-serif;
}
#preloader,
.btn-primary-custom:hover:before,
.footer-links-inline a:hover::after,
.nav-link.active:after,
.nav-link:hover:after {
  width: 100%;
}
.btn-primary-custom:before,
.nav-link:after,
.service-card:before {
  content: "";
  left: 0;
  position: absolute;
}
:root {
  --primary-color: #27ae60;
  --primary-dark: #219653;
  --secondary-color: #2d3748;
  --accent-color: #2ecc71;
  --light-color: #f8f9fa;
  --dark-color: #1a202c;
  --gray-color: #718096;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: var(--dark-color);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-section,
.navbar-brand {
  align-items: center;
  display: flex;
}
.loader-container {
  position: relative;
  width: 120px;
  height: 120px;
}
.loader-icon {
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 2s linear infinite spin;
}
.hero-section,
.nav-link,
.pricing-card,
.section-title,
.service-card {
  position: relative;
}
.loader-text {
  margin-top: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.2rem;
}
.nav-link.active,
.nav-link:hover,
.navbar-brand {
  color: var(--primary-color) !important;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.navbar {
  transition: 0.4s;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
}
.navbar-brand i {
  margin-right: 8px;
  font-size: 1.5rem;
}
.nav-link {
  font-weight: 500;
  margin: 0 8px;
  color: var(--dark-color) !important;
  transition: 0.3s;
}
.nav-link:after {
  width: 0;
  height: 2px;
  bottom: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/2148848604.jpg') center center/cover no-repeat;
  height: 100vh;
  color: #fff;
  overflow: hidden;
}
.hero-content {
  z-index: 2;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 35px;
  max-width: 700px;
  opacity: 0.9;
}
.btn-outline-custom,
.btn-primary-custom {
  color: #fff;
  padding: 14px 35px;
  font-weight: 600;
  margin: 8px;
  transition: 0.4s;
}
.btn-primary-custom {
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-custom:before {
  top: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  z-index: -1;
}
.btn-primary-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(39, 174, 96, 0.4);
}
.btn-outline-custom {
  border: 2px solid #fff;
  border-radius: 50px;
  background: 0 0;
}
.btn-outline-custom:hover {
  background-color: #fff;
  color: var(--dark-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-padding {
  padding: 30px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary-color);
}
.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin: 20px auto;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--gray-color);
  font-size: 1.1rem;
}
.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}
.feature-box,
.service-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.about-img:hover {
  transform: scale(1.03);
}
.about-content {
  padding-left: 30px;
}
.about-content h3 {
  margin-bottom: 25px;
  color: var(--secondary-color);
}
.about-content p {
  margin-bottom: 25px;
  color: var(--gray-color);
}
.feature-icon,
.feature-list i,
.service-icon,
.stats-number {
  color: var(--primary-color);
}
.feature-list,
.footer-links {
  list-style: none;
  padding: 0;
}
.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.feature-list i {
  margin-right: 15px;
  font-size: 1.2rem;
  background: rgba(39, 174, 96, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section {
  background-color: var(--light-color);
}
.service-card {
  background: #fff;
  padding: 40px 30px;
  transition: 0.4s;
  height: auto;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 20px;
}
.service-card:before {
  top: 0;
  width: 100%;
  height: 0;
  background: var(--gradient);
  transition: 0.4s;
  z-index: -1;
  opacity: 0;
}
.service-card:hover:before {
  height: 100%;
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.service-card:hover .service-icon {
  color: #fff;
  transform: scale(1.1);
}
.breadcrumb-nav a:hover,
.cta-section h2,
.search-btn i,
.service-card:hover h4,
.service-card:hover p {
  color: #fff;
}
.service-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  transition: 0.4s;
}
.service-card h4 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  transition: 0.4s;
}
.service-card p {
  color: var(--gray-color);
  transition: 0.4s;
}
.applications-section,
.biology-section,
.prevention-section,
.types-section,
.why-choose-section {
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
}
.feature-box {
  padding: 30px 20px;
  background: #fff;
  transition: 0.4s;
  height: 100%;
  margin-bottom: 30px;
}
.feature-box:hover,
.stats-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.featured-post-card:hover .featured-post-img img,
.pricing-card:hover,
.related-post-card:hover .related-post-img img,
.team-member-card:hover .member-img img {
  transform: scale(1.05);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
}
.pricing-card,
.stats-box {
  background: #fff;
  transition: 0.4s;
  margin-bottom: 30px;
}
.pricing-card,
.stats-box,
.testimonial-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.stats-number {
  line-height: 1;
}
.pricing-title,
.stats-text {
  color: var(--secondary-color);
}
.pricing-card {
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
}
.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.featured-post-card:hover,
.method-card:hover,
.pathogen-card:hover,
.prep-card:hover,
.process-step:hover,
.related-post-card:hover,
.scroll-to-top:hover,
.social-icons a:hover,
.species-card:hover,
.topic-card:hover {
  transform: translateY(-5px);
}
.pricing-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 20px 0;
  line-height: 1;
}
.pricing-period {
  color: var(--gray-color);
  font-size: 1rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.pricing-features li {
  margin-bottom: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--gray-color);
}
.method-features i,
.pricing-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  margin: 15px;
  position: relative;
}
.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: rgba(39, 174, 96, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--gray-color);
  position: relative;
  z-index: 1;
}
.author-meta,
.post-meta span,
.testimonial-author {
  display: flex;
  align-items: center;
}
.author-img {
  overflow: hidden;
  border: 3px solid var(--primary-color);
}
.author-info h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--secondary-color);
}
.author-info p {
  margin: 0;
  color: var(--primary-color);
  font-weight: 500;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}
.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 60%;
  transform: translateY(-50%);
  opacity: 1;
}
.carousel-control-prev {
  left: -25px;
}
.carousel-control-next {
  right: -25px;
}
.contact-form {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.form-control {
  padding: 15px 20px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 1rem;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(39, 174, 96, 0.25);
}
.contact-info,
.hiding-list,
.importance-facts,
.tips-list {
  margin-top: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.contact-icon,
.social-icons a {
  align-items: center;
  border-radius: 50%;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
  background: rgba(39, 174, 96, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
}
.contact-details h5 {
  margin-bottom: 8px;
  color: var(--secondary-color);
}
.contact-details p {
  color: var(--gray-color);
  margin: 0;
}
footer {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0,
    var(--dark-color) 100%
  );
  color: #fff;
  padding: 80px 0 0;
}
.footer-main {
  padding-bottom: 60px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}
.footer-logo i {
  margin-right: 10px;
  color: var(--accent-color);
}
.footer-about {
  margin-bottom: 30px;
  color: #cbd5e0;
}
.comment-actions,
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--primary-color);
}
.footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.footer-links a i {
  margin-right: 10px;
  font-size: 0.8rem;
  color: var(--accent-color);
}
.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}
.footer-contact li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.footer-contact i {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
}
.footer-contact p {
  margin: 0;
  color: #cbd5e0;
}
.footer-newsletter p {
  color: #cbd5e0;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 100%;
}
.newsletter-input::placeholder {
  color: #a0aec0;
}
.newsletter-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-btn:hover {
  background: var(--accent-color);
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 25px 0;
  text-align: center;
  border-radius: 50px;
}
.copyright {
  color: #a0aec0;
  margin: 0;
}
.footer-payments {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.payment-icon {
  font-size: 1.8rem;
  color: #a0aec0;
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.6);
}
@media (max-width: 992px) {

  .hero-content{padding-top: 70px;}
  .hero-title {
    font-size: 3rem;
  }
  .about-content {
    margin-top: 40px;
    padding-left: 10px;
  }
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 80px 0;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .newsletter-btn {
    border-radius: 5px;
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .btn-outline-custom,
  .btn-primary-custom {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}
.termite-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/2148848604.jpg') center/cover;
}
.warning-section {
  background-color: #f8f9fa;
}
.featured-post-card,
.method-card,
.prep-card,
.species-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}
.species-img {
  height: 200px;
  overflow: hidden;
}
.post-thumbnail img,
.recent-post-thumb img,
.species-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-body,
.method-body,
.prep-body,
.related-post-content,
.species-content {
  padding: 20px;
}
.species-content h4 {
  color: #333;
  margin-bottom: 10px;
}
.species-desc {
  color: #666;
  margin-bottom: 15px;
}
.category-list,
.prep-list,
.species-features,
.toc-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.species-features li {
  margin-bottom: 8px;
  color: #555;
}
.species-features i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}
.applications-list,
.biology-facts,
.breeding-list {
  margin-bottom: 30px;
}
.application-item,
.breeding-item,
.fact-item,
.hiding-item,
.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.application-icon,
.breeding-icon,
.fact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 40px;
}
.application-details h5,
.breeding-details h5,
.fact-details h5,
.hiding-content h5 {
  margin-bottom: 5px;
  color: #333;
}
.application-details p,
.breeding-details p,
.fact-details p,
.hiding-content p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.9rem;
}
.hiding-number,
.tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}
.terms-section strong,
.tip-content h5 {
  color: #333;
}
.tip-content p,
.value-description {
  color: #666;
}
.fa-bacteria,
.fa-bolt,
.fa-check-double,
.fa-cloud,
.fa-fungus,
.fa-hand-sparkles,
.fa-list-check,
.fa-map-marked-alt,
.fa-snowflake,
.fa-temperature-high,
.fa-vacuum,
.fa-vial,
.fa-wind {
  font-size: 2rem;
}
.method-header,
.prep-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--primary-color);
  color: #fff;
}
.prep-header i {
  font-size: 1.5rem;
  margin-right: 15px;
}
.method-header h4,
.prep-header h4 {
  margin: 0;
  font-weight: 600;
}
.prep-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.pathogen-list li:before,
.prep-list li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.acknowledgement-card p:last-child,
.article-share h5,
.pathogen-list li:last-child,
.prep-list li:last-child {
  margin-bottom: 0;
}
.certification-note,
.prep-note {
  display: flex;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.author-img,
.method-icon,
.post-date,
.post-read-time,
.recent-post-thumb {
  margin-right: 15px;
}
.certification-note i,
.prep-note i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}
.certification-note p,
.prep-note p {
  margin-bottom: 0;
  color: #666;
}
.importance-facts ul,
.warning-signs ul {
  list-style: none;
  padding-left: 0;
}
.contact-details p,
.importance-facts li,
.post-content .post-meta,
.warning-signs li {
  margin-bottom: 10px;
}
.damage-img-container,
.importance-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.pathogen-card,
.process-step {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}
.damage-caption,
.importance-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px;
  text-align: center;
  font-weight: 500;
}
.disinfection-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/photo-1584622650111-993a426fbf0a.jpg')
      center/cover;
}
.pathogen-card {
  background: #fff;
  padding: 25px 20px;
  text-align: center;
}
.pathogen-icon,
.step-icon,
.topic-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.pathogen-card h5,
.process-step h4 {
  margin-bottom: 15px;
  color: #333;
}
.method-features li,
.pathogen-list li {
  margin-bottom: 8px;
}
.pathogen-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
}
.pathogen-list li {
  padding-left: 20px;
  position: relative;
  color: #555;
}
.importance-section {
  background: #f8f9fa;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
}
.blog-post,
.sidebar-widget {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.step-number {
  display: inline-block;
  line-height: 40px;
  background: var(--primary-color);
  margin-bottom: 15px;
}
.method-icon {
  font-size: 2rem;
}
.method-features {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.accordion-button {
  font-weight: 600;
  padding: 15px 20px;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--primary-color);
}
.service-area {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
.note-text {
  font-style: italic;
  color: #6c757d;
  font-size: 0.9rem;
}
.pathogens-section {
  background: linear-gradient(135deg, #fff 0, #f8f9fa 100%);
}
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/photo-1486312338219-ce68d2c6f44d.jpg')
      center/cover;
}
.featured-post-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.featured-post-img img,
.related-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-post,
.featured-post-content,
.member-info {
  padding: 25px;
}
.post-meta {
  display: flex;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #6c757d;
}
.post-title {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.post-excerpt {
  margin-bottom: 20px;
  color: #555;
}
.blog-post {
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s;
}
.content-image img,
.post-thumbnail {
  border-radius: 8px;
}
.breadcrumb-nav a,
.category-list a,
.read-more,
.toc-card a {
  transition: color 0.3s;
  text-decoration: none;
}
.blog-post:hover,
.share-btn:hover {
  transform: translateY(-3px);
}
.post-thumbnail {
  overflow: hidden;
  height: 180px;
}
.post-content {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .post-content {
    padding-left: 0;
    padding-top: 20px;
  }
}
.post-content .post-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.author-details p,
.comment-content p,
.newsletter-form .form-control,
.post-content .post-excerpt,
.terms-section p {
  margin-bottom: 15px;
}
.read-more {
  color: var(--primary-color);
  font-weight: 600;
}
.read-more:hover {
  color: #1e7e34;
}
.pagination .page-link {
  color: var(--primary-color);
  border: 1px solid #dee2e6;
}
.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.pagination .page-link:hover {
  color: var(--primary-color);
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.blog-sidebar,
.terms-navigation {
  position: sticky;
  top: 100px;
}
.search-input {
  padding: 18px;
  font-size: 18px;
  border: 1px solid #d2d8dd;
  border-right: none;
}
.search-input:focus {
  box-shadow: none;
  border-color: #c3c7ca;
}
.content-image img,
.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.search-btn {
  width: 80px;
  background: linear-gradient(145deg, #4ca866, #308d47);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: none;
  border-radius: 0;
  height: 65px;
}
.category-count,
.recent-post-content .post-date {
  font-size: 0.8rem;
  color: #6c757d;
}
.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
}
.article-section h2,
.widget-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
  font-weight: 700;
}
.search-form .input-group {
  border-radius: 5px;
  overflow: hidden;
}
.search-form .form-control {
  border: 1px solid #dee2e6;
  border-right: none;
}
.search-form .btn {
  border-radius: 0 5px 5px 0;
}
.category-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f8f9fa;
}
.category-list li:last-child,
.comment-item:last-child,
.recent-post-item:last-child,
.toc-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.category-list a {
  display: flex;
  justify-content: space-between;
  color: #333;
}
.category-list a:hover,
.comment-actions a:hover,
.contact-details strong,
.recent-post-content h5 a:hover,
.related-post-content h5 a:hover,
.toc-card a:hover {
  color: var(--primary-color);
}
.category-count {
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 10px;
}
.recent-posts {
  margin-top: 15px;
}
.recent-post-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f8f9fa;
}
.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.recent-post-content h5 {
  margin-bottom: 5px;
  font-size: 0.9rem;
  line-height: 1.3;
}
.recent-post-content h5 a,
.related-post-content h5 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.topic-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  height: 100%;
}
.step-content h5,
.topic-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
}
.topic-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.badge,
.breadcrumb-nav i {
  font-size: 0.7rem;
}
.badge {
  padding: 5px 10px;
}
.blog-detail-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/photo-1486312338219-ce68d2c6f44d.jpg')
      center/cover;
  padding: 180px 0 100px;
  color: #fff;
  text-align: center;
}
.breadcrumb-nav {
  margin-bottom: 30px;
  font-size: 0.9rem;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-nav span {
  color: #fff;
  font-weight: 600;
}
.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}
.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.author-info {
  text-align: left;
}
.cert-name,
.contact-cta,
.cta-box,
.image-caption,
.stats-box,
.team-hero,
.value-card {
  text-align: center;
}
.author-name {
  display: block;
  font-weight: 600;
}
.author-title {
  font-size: 0.85rem;
  opacity: 0.8;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-detail-content {
  padding-top: 80px;
}
.blog-article {
  margin-bottom: 50px;
}
.featured-image {
  position: relative;
}
.image-caption {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 10px;
  font-style: italic;
}
.article-intro .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
}
.table-of-contents {
  position: sticky;
  top: 100px;
  z-index: 10;
}
.toc-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  border-left: 4px solid var(--primary-color);
}
.comparison-table h5,
.toc-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
}
.toc-card li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}
.toc-card a {
  color: #333;
  display: block;
}
.article-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}
.article-section p {
  margin-bottom: 20px;
}
.action-steps,
.comparison-table,
.content-image {
  margin: 30px 0;
}
.comparison-table table,
.step-card {
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.tip-box,
.warning-box {
  display: flex;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}
.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}
.alert-info,
.tip-box {
  border-left: 4px solid #17a2b8;
}
.tip-box {
  background: #d1ecf1;
}
.tip-icon,
.warning-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.warning-icon {
  color: #856404;
}
.tip-icon {
  color: #0c5460;
}
.tip-content h5,
.warning-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
.tip-content p,
.warning-content p {
  margin-bottom: 0;
  font-size: 1rem;
}
.comparison-table table {
  overflow: hidden;
}
.comparison-table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}
.comment-form h4,
.comments-section h3,
.related-posts h3,
.step-number {
  font-weight: 700;
}
.step-card {
  display: flex;
  background: #fff;
  padding: 20px;
  height: 100%;
}
.cta-box,
.step-number {
  background: var(--primary-color);
  color: #fff;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.article-share,
.article-tags {
  align-items: center;
  display: flex;
}
.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.cta-box {
  padding: 30px;
  border-radius: 10px;
}
.cta-box h4 {
  margin-bottom: 15px;
  color: #fff;
}
.author-social a,
.tag {
  background: #f8f9fa;
  color: #333;
  transition: 0.3s;
}
.cta-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}
.article-tags {
  flex-wrap: wrap;
  gap: 10px;
}
.article-tags h5 {
  margin-bottom: 0;
  margin-right: 10px;
}
.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
}
.comment-item,
.terms-section {
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}
.author-social a:hover,
.cta-section,
.tag:hover {
  background: var(--primary-color);
  color: #fff;
}
.article-share {
  flex-wrap: wrap;
  gap: 15px;
}
.author-social a,
.share-btn {
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
}
.author-social,
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  transition: transform 0.3s;
}
.author-bio-card,
.comment-form,
.related-post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.share-btn.facebook {
  background: #3b5998;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0077b5;
}
.share-btn.pinterest {
  background: #bd081c;
}
.share-btn.link {
  background: #6c757d;
}
.author-bio-card {
  display: flex;
  padding: 30px;
}
.author-image,
.comment-avatar {
  margin-right: 20px;
  flex-shrink: 0;
}
.author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.author-details h4 {
  margin-bottom: 5px;
  font-weight: 700;
}
.author-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.author-social a {
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
}
.comment-actions a,
.comment-date {
  color: #6c757d;
  font-size: 0.9rem;
}
.comment-list {
  margin-bottom: 40px;
}
.comment-item {
  display: flex;
  margin-bottom: 30px;
}
.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.comment-header h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.comment-actions a {
  text-decoration: none;
  transition: color 0.3s;
}
.faq-question i,
.related-post-card {
  transition: transform 0.3s;
}
.comment-form {
  padding: 30px;
}
.related-post-card {
  overflow: hidden;
  height: 100%;
}
.faq-item,
.footer-links li a {
  transition: 0.3s;
}
.related-post-img {
  height: 300px;
  overflow: hidden;
}
.related-post-content .post-category {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.related-post-content h5 {
  margin-bottom: 10px;
  line-height: 1.4;
}
.related-post-content .post-date {
  color: #6c757d;
  font-size: 0.85rem;
}
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/photo-1589829545856-d10d557cf95f.jpg')
      center/cover;
}
.last-updated {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 20px;
}
.terms-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.terms-section:last-of-type {
  border-bottom: none;
}
.terms-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
  font-weight: 700;
}
.terms-section h5 {
  color: #333;
  margin: 25px 0 15px;
  font-weight: 600;
}
.terms-section ol,
.terms-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.terms-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.contact-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 5px;
}
.terms-acknowledgement {
  margin-top: 40px;
}
.acknowledgement-card {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}
.acknowledgement-card h4 {
  color: #155724;
  margin-bottom: 15px;
  font-weight: 600;
}
.acknowledgement-card p {
  margin-bottom: 10px;
  color: #155724;
}
.navigation-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.navigation-card h5 {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-color);
}
.contact-cta h3,
.faq-item {
  margin-bottom: 1.5rem;
}
.cta-buttons .btn-outline-custom {
  border-color: #fff;
  color: #fff;
}
.cta-buttons .btn-outline-custom:hover {
  background: #fff;
  color: var(--primary-color);
}
.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
@media print {
  .cta-section,
  .footer,
  .navbar,
  .scroll-to-top,
  .terms-navigation {
    display: none;
  }
  .terms-hero {
    background: 0 0;
    color: #000;
    padding: 50px 0;
  }
  .terms-content {
    padding: 0;
  }
  .container {
    max-width: 100%;
  }
}
.faq-section {
  background-color: #f9f9f9;
}
.faq-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.faq-question {
  background-color: #fff;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}
.faq-question.active i {
  transform: rotate(180deg);
}
.faq-answer {
  background-color: #fff;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  border-top: 1px solid #f0f0f0;
}
.faq-answer.show {
  padding: 1.5rem;
  max-height: 1000px;
}
.search-box {
  position: relative;
  margin-bottom: 3rem;
}
.search-box input {
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 50px;
  border: 1px solid #ddd;
  width: 100%;
  font-size: 1rem;
  transition: 0.3s;
}
.search-box input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.search-box i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}
.contact-cta {
  background: linear-gradient(135deg, #4caf50 0, #45a049 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 4rem;
}
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.faq-category {
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}
.team-member-card,
.value-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.faq-category.active,
.faq-category:hover {
  background-color: #4caf50;
  color: #fff;
  border-color: #4caf50;
}
.team-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602046/html/assets/images/2148848604.jpg') center/cover;
  color: #fff;
  padding: 150px 0 100px;
}
.team-member-card {
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: 30px;
  height: 100%;
}
.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.member-img {
  height: 350px;
  overflow: hidden;
}
.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.member-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}
.member-position {
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}
.member-bio {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555;
  transition: 0.3s;
}
.member-social a:hover {
  background: #4caf50;
  color: #fff;
}
.team-stats {
  background: linear-gradient(135deg, #4caf50 0, #45a049 100%);
  color: #fff;
  padding: 80px 0;
  margin: 80px 0;
}
.stats-box {
  padding: 20px;
}
.stats-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.stats-text {
  font-size: 1.1rem;
  font-weight: 500;
}
.values-section {
  padding: 80px 0;
}
.value-card {
  padding: 30px 20px;
  transition: 0.3s;
  height: 100%;
}
.cert-logo,
.value-icon {
  height: 80px;
  display: flex;
}
.cert-logo{ height: 280px;}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.value-icon {
  width: 80px;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.cert-name,
.value-title {
  font-weight: 600;
  color: #333;
}
.value-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.certifications {
  background: #f9f9f9;
  padding: 80px 0;
}
.cert-logo {
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cert-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.cert-logo:hover img {
  filter: grayscale(0%);
}
.team-hero .hero-subtitle {
  margin: auto auto 20px;
}
.damage-img-container .img-fluid {
  min-height: auto;
}
.footer-links-inline {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 10px 0;
}
.footer-links-inline a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.footer-links-inline a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #00d084;
  transition: width 0.3s;
}
.footer-links-inline a:hover {
  color: #00d084;
}
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 1.8rem;
  }
  .blog-meta {
    flex-direction: column;
    gap: 20px;
  }
  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }
  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .comment-item {
    flex-direction: column;
  }
  .comment-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .terms-hero .hero-title {
    font-size: 2rem;
  }
  .terms-section h2 {
    font-size: 1.5rem;
  }
  .navigation-card {
    position: static;
    margin-top: 30px;
  }
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-link {
    flex: 1 0 auto;
    text-align: center;
    min-width: 120px;
  }
  .team-hero {
    padding: 120px 0 80px;
  }
  .member-img {
    height: 250px;
  }
  .stats-number {
    font-size: 2.5rem;
  }
  .container,
  .footer-bottom,
  .row,
  .your-specific-class {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
}
