.nav-link:focus, .nav-link:hover {
    color: #2aacc8 !important;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    background-color: #2aacc8 !important;
}
.bg-opacity-50{
    opacity: 0.6 !important;
    
}

/* === Services Section === */
.service-thumbnail {
  background-color: #f8f9fa; /* Light gray bg */
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  align-items: flex-start;
  height: 100%;
}

.service-thumbnail:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-thumbnail img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-top: 4px;
}

.service-thumbnail_text {
  flex: 1;
}

.service-thumbnail_text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
  line-height: 1.4;
}

.service-thumbnail_text h4 span {
  color: #2aacc8; /* Bootstrap primary */
}

.service-thumbnail_text p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* === Products Section === */
.page-products .product-col a img,
.page-products.single .carousel img,
.page-products.single .post-img-wrap img {
    border-radius: 8px;
}

.page-products.single .content a {
    color: #f78f1e;
}

.page-item .page-link {
    color: #2aacc8 !important;
}

.page-item.active .page-link {
    color: #fff !important;
    background-color: #2aacc8 !important;
    border-color: #2aacc8 !important;
}

/* Base style for unordered and ordered lists inside Gutenberg content */
.wp-block-list,
.wp-block-list ul,
.wp-block-list ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  padding-left: 1.25em;
}

/* Unordered list bullets */
.wp-block-list ul {
  list-style-type: disc;
}

/* Ordered list numbers */
.wp-block-list ol {
  list-style-type: decimal;
}

/* Nested list styling */
.wp-block-list li > ul,
.wp-block-list li > ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1em;
}

/* List item spacing */
.wp-block-list li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* Optional: Add nice bullets or numbers */
.wp-block-list li::marker {
  color: #555;
}

.entry-content ul,
.entry-content ol {
  margin-left: 1.5em;
  list-style-position: outside;
}

 