/* Root Styles */

/*!
Theme Name: cmi
Author: Gavin
Author URI: https://www.atomic-art.cn/
Description: A lightweight WordPress starter theme based on Bootstrap 5.
Version: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cmi
Tags: bootstrap, starter, responsive
*/
.text-purple {
  color: #9c27b0 !important;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
}

.link-resources {
  color: #000;
}

.link-resources:hover {
  color: #4fc3f7;
}

.link-title {
  color: #000;
}

.link-title:hover {
  color: #4fc3f7;
}

.text-title {
  color: #4fc3f7;
}

.text-title:hover {
  color: #000;
}

.container,
.container-fluid {
  max-width: 1600px !important;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar {
  background: linear-gradient(90deg, #0a1929 0%, #1d2e3c 100%);
  color: white;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: #4fc3f7;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 0.875rem;
  margin-left: 8px;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header {
  border-top: 3px solid #1d2e3c;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a1929 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, #0a1929 0%, #1d2e3c 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #fff;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.65)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
  color: white !important;
  position: relative;
  padding: 8px 15px !important;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover {
  background: linear-gradient(135deg, #e6b047 0%, #d6a427 100%);
  color: white !important;
  transform: translateY(-2px);
}

.nav-link:focus-visible {
  box-shadow: none !important;
}

.dropdown-menu {
  background: linear-gradient(180deg, #0a1929 0%, #1d2e3c 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: #c2cfe0 !important;
  padding: 10px 25px !important;
  transition: all 0.3s;
  border: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  color: white !important;
  border: none !important;
  outline: none;
  box-shadow: none;
}

.dropdown-item:active {
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  color: white !important;
  border: none !important;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 10px 20px;
  border: none;
  border-radius: 30px 0 0 30px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  transition: all 0.3s;
  height: 46px;
}

.search-box input:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
  background-color: white;
}

.search-box button {
  height: 46px;
  width: 50px;
  border-radius: 0 30px 30px 0;
  border: none;
  background: linear-gradient(135deg, #e6b047 0%, #d6a427 100%);
  color: white;
  font-size: 1.125rem;
  box-shadow: 0 4px 10px rgba(230, 176, 71, 0.4);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box button:hover {
  background: linear-gradient(135deg, #d6a427 0%, #c49216 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 176, 71, 0.6);
}

.btn-primary {
  background: linear-gradient(135deg, #e6b047 0%, #d6a427 100%);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(230, 176, 71, 0.4);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d6a427 0%, #c49216 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230, 176, 71, 0.5);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: #1d2e3c;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230, 176, 71, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #0a1929 0%, #1d2e3c 100%);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10, 25, 41, 0.3);
  transition: all 0.3s;
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1d2e3c 0%, #2a3f4e 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 25, 41, 0.4);
}

.section-title h2 {
  color: #0a1929;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.125rem;
  color: #5a7a9c;
}

.product-card,
.service-card,
.industry-card,
.tech-card,
.strength-card {
  transition: all 0.4s;
  height: 100%;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  position: relative;
  z-index: 1;
}

.product-card:before,
.service-card:before,
.industry-card:before,
.tech-card:before,
.strength-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.05) 0%,
    rgba(33, 150, 243, 0.05) 100%
  );
  z-index: -1;
  border-radius: 12px;
}

.product-card:hover,
.service-card:hover,
.industry-card:hover,
.tech-card:hover,
.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.tech-img {
  height: 220px;
  overflow: hidden;
}

.tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .tech-img img,
.service-card:hover .tech-img img,
.industry-card:hover .tech-img img,
.tech-card:hover .tech-img img,
.strength-card:hover .tech-img img {
  transform: scale(1.1);
}

.contact-engineer {
  background: linear-gradient(
      135deg,
      rgba(10, 25, 41, 0.95) 0%,
      rgba(29, 46, 60, 0.95) 100%
    ),
    url("https://picsum.photos/1200/600?grayscale") no-repeat center
      center/cover;
  color: white;
  position: relative;
  z-index: 2;
}

.contact-engineer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(33, 150, 243, 0.15) 100%
  );
  z-index: -1;
}

.contact-engineer .container {
  position: relative;
  z-index: 2;
}

.py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

footer {
  background: linear-gradient(180deg, #0a1929 0%, #1d2e3c 100%);
  color: white;
  position: relative;
  z-index: 2;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(33, 150, 243, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-column h3 {
  color: #4fc3f7;
  margin-bottom: 25px;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

footer h3 {
  color: #4fc3f7;
  margin-bottom: 25px;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

footer h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

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

.footer-column ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-column ul li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-size: 0.625rem;
  top: 6px;
}

.footer-column ul li a {
  color: #c2cfe0;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column.col-lg-2 a {
  color: #a0b4cb;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-column.col-lg-2 a:hover {
  color: #4fc3f7;
  text-decoration: none;
  transform: translateX(5px);
}

.copyright {
  border-top: 1px solid rgba(79, 195, 247, 0.2);
  color: #a0b4cb;
  font-size: 0.875rem;
  margin-top: 40px;
  padding-top: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: transform 0.3s;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-item i {
  font-size: 1.25rem;
  margin-right: 12px;
  color: #4fc3f7;
  min-width: 25px;
}

.ri-2x {
  font-size: 2rem;
}

.ri-3x {
  font-size: 3rem;
}

.social-links a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.social-links a:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
}

.section-gradient {
  position: relative;
}

.section-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(79, 195, 247, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.section-gradient > .container {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(33, 150, 243, 0.1) 100%
  );
  font-size: 1.75rem;
  color: #4fc3f7;
  transition: all 0.3s;
}

.service-card .card-icon,
.industry-card .card-icon,
.strength-card .card-icon {
  width: 100px;
  height: 100px;
  font-size: 2rem;
}

.service-card:hover .card-icon,
.industry-card:hover .card-icon,
.strength-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.2) 0%,
    rgba(33, 150, 243, 0.2) 100%
  );
}

/* Products page specific */
.product-group-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
  border: 1px solid #eaeff5;
}

.product-group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.product-group-img {
  height: 400px;
  overflow: hidden;
}

.product-group-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-group-card:hover .product-group-img img {
  transform: scale(1.1);
}

.product-group-content {
  padding: 25px;
}

.product-group-content h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-group-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.view-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a1929;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.view-more:hover {
  color: #e6b047;
  text-decoration: none;
}

.view-more i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.product-group-card:hover .view-more i {
  transform: translateX(5px);
}

.product-overview-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: 40px;
}

.product-overview-section h2 {
  color: #0a1929;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeff5;
  position: relative;
}

.product-overview-section h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

.product-overview-item {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeff5;
}

.product-overview-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-overview-img {
  flex: 0 0 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 20px;
}

.product-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-overview-card:hover .product-overview-img img {
  transform: scale(1.05);
}

.product-overview-content {
  flex: 1;
}

.product-overview-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1929;
  margin: 0 0 10px 0;
}

.product-overview-content p {
  color: #5a7a9c;
  margin-bottom: 15px;
}

/* Banner overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-item {
  position: relative;
}

.carousel-item > .container {
  position: relative;
  z-index: 2;
}

.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://picsum.photos/1920/600?random=25") no-repeat center
      center/cover;
  color: white;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(33, 150, 243, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.industry-img {
  height: 220px;
  overflow: hidden;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.industry-card:hover .industry-img img {
  transform: scale(1.1);
}

.essential-resources {
  padding: 80px 0;
}

/* .resources-slider-wrapper { position: relative; overflow: hidden; margin: 0 -15px; padding: 0 60px; } */
/* .resource-card { position: relative; z-index: 1; } */
/* .resource-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(79, 195, 247, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%); z-index: -1; border-radius: 12px; }
.resource-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15); } */

.technology-categories-card {
  transition: all 0.4s;
  height: 100%;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  position: relative;
  z-index: 1;
}

.technology-categories-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.05) 0%,
    rgba(33, 150, 243, 0.05) 100%
  );
  z-index: -1;
  border-radius: 12px;
}

.technology-categories-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.technology-categories-card {
  transition: all 0.4s;
  height: 100%;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  position: relative;
  z-index: 1;
  perspective: 600px;
  transform-style: preserve-3d;
}

.technology-categories-card .card-image-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.technology-categories-card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

.technology-categories-card .image-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: perspective(600px) rotateY(180deg);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.5, 1), opacity 0.6s ease;
  z-index: 2;
  border-radius: 12px;
}

.technology-categories-card:hover .image-overlay {
  opacity: 1;
  transform: perspective(600px) rotateY(0deg);
}

.technology-categories-card .card-content {
  padding: 30px 15px;
  display: flex;
  align-items: center;
}

.technology-categories-card .card-icon {
  font-size: 4rem;
  color: #4fc3f7 !important;
  margin: 0 15px 0 0 !important;
  background: none;
}

.technology-categories-card .card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.technology-categories-card .tech-description {
  position: static;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  transform: none;
  transition: none;
  z-index: 3;
  display: none; /* Hidden by default - only shows on hover over image */
}

.resource-img {
  height: auto;
  overflow: hidden;
}

.resource-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* .resources-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #E6B047 0%, #d6a427 100%); border: none; color: white; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 10; box-shadow: 0 4px 10px rgba(230, 176, 71, 0.4); }
.resources-slider-btn:hover { background: linear-gradient(135deg, #d6a427 0%, #c49216 100%); transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 15px rgba(230, 176, 71, 0.6); }
.resources-prev-btn { left: 10px; }
.resources-next-btn { right: 10px; } */

.industry-detail-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
}

.industry-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.industry-detail-img {
  height: 100%;
  overflow: hidden;
}

.industry-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.industry-detail-card:hover .industry-detail-img img {
  transform: scale(1.05);
}

.industry-detail-content {
  padding: 30px;
}

.industry-detail-content h3 {
  color: #0a1929;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.industry-detail-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 0 10px 36px 10px;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.5s ease;
  height: auto;
  transition: all 0.4s;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  position: relative;
  z-index: 1;
}

.swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.05) 0%,
    rgba(33, 150, 243, 0.05) 100%
  );
  z-index: -1;
  border-radius: 12px;
}

.swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6b047 0%, #d6a427 100%);
  border: none;
  color: white;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(230, 176, 71, 0.4);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #d6a427 0%, #c49216 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(230, 176, 71, 0.6);
}

.faq-section {
  padding: 60px 0;
}

.faq-section .faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.faq-section .faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question h2 {
  all: initial !important;
  font-weight: 600 !important;
  color: #0a1929 !important;
  font-size: 1.125rem !important;
  cursor: pointer !important;
}

.faq-question h2::after {
  all: initial !important;
}

.faq-answer {
  color: #5a7a9c;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Product FAQ specific: remove padding on faq-item */
.tech-content-section .faq-item {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.tech-content-section .faq-item .faq-question {
  margin: 0;
}

.tech-content-section .faq-item .faq-answer {
  padding: 20px;
  border-left: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-list {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.product-list h3 {
  color: #0a1929;
  margin-bottom: 30px;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

.product-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s;
}

.product-item:last-child {
  border-bottom: none;
}

.product-item:hover {
  background: #f8f9fa;
  padding-left: 20px;
}

.product-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(33, 150, 243, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: #4fc3f7;
}

.product-info h4 {
  color: #0a1929;
  margin-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 600;
}

.product-info p {
  color: #5a7a9c;
  margin: 0;
  font-size: 0.875rem;
}

.product-link {
  margin-left: auto;
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.product-link:hover {
  color: #2196f3;
  transform: translateX(5px);
}

.product-gallery {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
}

.product-detail-img {
  height: 400px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-gallery:hover .product-detail-img img {
  transform: scale(1.05);
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
}

.product-thumbnail {
  flex: 1;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: #4fc3f7;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: 2.5rem;
  color: #0a1929;
  margin-bottom: 15px;
}

.product-description {
  color: #5a7a9c;
  font-size: 1.1rem;
  line-height: 1.8;
}

.key-features {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

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

.feature-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

.specs-table,
.dimensions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table th,
.specs-table td,
.dimensions-table th,
.dimensions-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eaeff5;
}

.specs-table th,
.dimensions-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #0a1929;
}

.specs-table tr:last-child td,
.dimensions-table tr:last-child td {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #0a1929 !important;
  border: 1px solid transparent;
  border-radius: 0;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  transition: all 0.3s;
}

.nav-tabs .nav-item.show .nav-link {
  color: #0a1929;
  background-color: #fff;
  border-color: #dee2e6;
}

.nav-tabs .nav-link:hover {
  color: #ffffff;
  border-color: #dee2e6;
  background: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #0a1929;
  background: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  border-color: #dee2e6;
}

.options-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.applications-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.application-link {
  color: #4fc3f7;
  text-decoration: none;
  transition: all 0.3s;
}

.application-link:hover {
  color: #2196f3;
}

.related-products {
  margin-top: 40px;
}

.contact-form-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.quote-section {
  background: linear-gradient(135deg, #0a1929 0%, #1d2e3c 100%);
  color: white;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.quote-section h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 600;
}

.quote-section p {
  color: #c2cfe0;
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #eaeff5;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s;
}

.form-group {
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: #4fc3f7;
  box-shadow: 0 0 0 0.2rem rgba(79, 195, 247, 0.25);
}

/* Services page specific */

.service-detail-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.4s;
  height: 100%;
  position: relative;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-detail-card:hover::before {
  opacity: 1;
}

.service-detail-card .card-icon,
.service-detail-card h3,
.service-detail-card p {
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-detail-card:hover .card-icon > i,
.service-detail-card:hover h3,
.service-detail-card:hover p {
  color: white;
}

.service-detail-card .card-icon {
  width: 100px;
  height: 100px;
  margin: 20px auto;
}

.service-detail-card .card-icon i {
  font-size: 4rem;
}

.service-detail-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-detail-card:hover .service-detail-img img {
  transform: scale(1.05);
}

.service-detail-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.service-detail-content h3 {
  color: #0a1929;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-detail-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #5a7a9c;
}

.feature-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-weight: bold;
  font-size: 1rem;
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.product-img {
  height: 400px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-card:hover .product-info h3 {
  color: #4fc3f7;
}

.product-info p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.product-overview {
  padding: 80px 0;
}

.breadcrumb {
  background: transparent;
  padding: 20px 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  color: #5a7a9c;
}

.breadcrumb-item.active {
  color: #0a1929;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #4fc3f7;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #2196f3;
}

/* Products List page specific */
.filter-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
}

.filter-section h3 {
  color: #0a1929;
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 600;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-option {
  background: #f8f9fa;
  border: 1px solid #eaeff5;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-option:hover,
.filter-option.active {
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  color: white;
  border-color: #4fc3f7;
}

/* Products Filter Housings page specific */
.tech-sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: fit-content;
}

.tech-sidebar h3 {
  color: #0a1929;
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeff5;
  position: relative;
}

.tech-sidebar h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

.tech-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-category-list li {
  margin-bottom: 12px;
}

.tech-category-list li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #5a7a9c;
  border-radius: 8px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.tech-category-list li a:hover {
  background: linear-gradient(
    90deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(33, 150, 243, 0.1) 100%
  );
  color: #0a1929;
  border-left: 3px solid #4fc3f7;
  transform: translateX(5px);
}

.tech-category-list li a.active {
  background: linear-gradient(
    90deg,
    rgba(79, 195, 247, 0.15) 0%,
    rgba(33, 150, 243, 0.15) 100%
  );
  color: #0a1929;
  border-left: 3px solid #4fc3f7;
  font-weight: 500;
}

.tech-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 25px;
  height: auto;
}

.tech-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.tech-article-img {
  height: 200px;
  overflow: hidden;
}

.tech-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tech-article-card:hover .tech-article-img img {
  transform: scale(1.05);
}

.tech-article-content {
  padding: 25px;
}

.tech-article-content h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.tech-article-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.tech-article-meta {
  display: flex;
  justify-content: space-between;
  color: #8a9fb5;
  font-size: 0.875rem;
  margin-bottom: 20px;
  border-top: 1px solid #eaeff5;
  padding-top: 15px;
}

.tech-article-meta span {
  display: flex;
  align-items: center;
}

.tech-article-meta i {
  margin-right: 5px;
  font-size: 1rem;
}

.resources-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 25px;
  height: auto;
}

.resources-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.resources-article-img {
  height: 200px;
  overflow: hidden;
}

.resources-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.resources-article-card:hover .resources-article-img img {
  transform: scale(1.05);
}

.resources-article-content {
  padding: 25px;
}

.resources-article-content h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.resources-article-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.resources-article-meta {
  display: flex;
  justify-content: space-between;
  color: #8a9fb5;
  font-size: 0.875rem;
  margin-bottom: 20px;
  border-top: 1px solid #eaeff5;
  padding-top: 15px;
}

.resources-article-meta span {
  display: flex;
  align-items: center;
}

.resources-article-meta i {
  margin-right: 5px;
  font-size: 1rem;
}

.resources-article-meta-tag {
  color: #8a9fb5;
  font-size: 0.875rem;
  margin-bottom: 20px;
  border-top: 1px solid #eaeff5;
  padding-top: 15px;
}

.resources-article-meta-tag span {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
}

.resources-article-meta-tag i {
  margin-right: 5px;
  font-size: 1rem;
}

.resources-article-meta-tag a {
  color: #8a9fb5;
  text-decoration: none;
  transition: all 0.3s;
}

.resources-article-meta-tag a:hover {
  color: #5a7a9c;
}

.faq-category {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 25px;
  height: 100%;
  position: relative;
  border: 1px solid #eaeff5;
}

.faq-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.faq-category-content {
  padding: 30px;
}

.faq-category-content h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-category-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.view-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a1929;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.view-more:hover {
  color: #e6b047;
  text-decoration: none;
}

.view-more i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.faq-category:hover .view-more i {
  transform: translateX(5px);
}

.product-subcategory {
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeff5;
  padding-bottom: 40px;
}

.product-subcategory:last-child {
  border-bottom: none;
}

.subcategory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.subcategory-header h3 {
  color: #0a1929;
  font-size: 1.75rem;
  margin: 0;
  font-weight: 600;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  color: #e6b047;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
}

.view-more-link:hover {
  color: #d6a427;
  text-decoration: underline;
  transform: translateX(5px);
}

.view-more-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.subcategory-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.product-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  position: relative;
  border: 1px solid #eaeff5;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.product-img {
  height: 400px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-content {
  padding: 20px;
}

.product-content h4 {
  color: #0a1929;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.product-content p {
  color: #5a7a9c;
  margin-bottom: 15px;
  font-size: 0.875rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: #8a9fb5;
  font-size: 0.875rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eaeff5;
}

.product-meta span {
  display: flex;
  align-items: center;
}

.product-meta i {
  margin-right: 5px;
  font-size: 1rem;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #0a1929;
  background-color: white;
  border: 1px solid #eaeff5;
  border-radius: 8px;
  transition: all 0.3s;
}

.page-link:hover,
.page-item.active .page-link {
  background: #2196f3;
  color: white;
  border-color: #4fc3f7;
}

.pagination .page-link {
  border: 1px solid #dee2e6;
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 6px !important;
}

.pagination .page-link:hover {
  background-color: #e6b047;
  border-color: #e6b047;
}

.pagination .page-item.active .page-link {
  background-color: #2196f3;
  border-color: #2196f3;
  color: white;
}

/* Resources FAQs page specific */
.faq-category {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 25px;
  height: 100%;
  position: relative;
  border: 1px solid #eaeff5;
}

.faq-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.faq-category-content {
  padding: 30px;
}

.faq-category-content h3 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-category-content p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.faq-category .faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #eaeff5;
}

.faq-category .faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: linear-gradient(
    90deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(33, 150, 243, 0.1) 100%
  );
  padding: 20px;
  font-weight: 600;
  color: #0a1929;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.faq-question i {
  color: #4fc3f7;
  margin-left: 10px;
}

.faq-answer {
  color: #5a7a9c;
  line-height: 1.6;
}

.faq-cta {
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.1) 0%,
    rgba(33, 150, 243, 0.1) 100%
  );
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  text-align: center;
}

.faq-cta h4 {
  color: #0a1929;
  margin-bottom: 15px;
}

.faq-cta p {
  color: #5a7a9c;
  margin-bottom: 20px;
}

.faq-cta a {
  color: #e6b047;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Resources Product FAQs page specific */
.tech-content-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.tech-content-section h2 {
  color: #0a1929;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeff5;
  position: relative;
}

.tech-content-section h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

.tech-content-section h3 {
  color: #0a1929;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.tech-content-section p {
  color: #5a7a9c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.tech-content-section ul,
.tech-content-section ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.tech-content-section li {
  margin-bottom: 10px;
  color: #5a7a9c;
}

.tech-content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-content-section table th,
.tech-content-section table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eaeff5;
}

.tech-content-section table th {
  background: linear-gradient(90deg, #0a1929 0%, #1d2e3c 100%);
  color: white;
  font-weight: 600;
}

.tech-content-section table tr:last-child td {
  border-bottom: none;
}

.tech-content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-content-section .formula {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-family: "Courier New", monospace;
  text-align: center;
  font-size: 1.125rem;
  border-left: 4px solid #4fc3f7;
}

.how-to-order {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: 40px;
}

.how-to-order h2 {
  color: #0a1929;
  margin-bottom: 25px;
}

.how-to-order ol {
  counter-reset: step-counter;
  padding: 0;
}

.how-to-order ol li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  color: #5a7a9c;
  line-height: 1.8;
}

.how-to-order ol li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* page specific */
.page-content-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.page-content-section h2 {
  color: #0a1929;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeff5;
  position: relative;
}

.page-content-section h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

.page-content-section h3 {
  color: #0a1929;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content-section p {
  color: #5a7a9c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-content-section ul,
.page-content-section ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.page-content-section li {
  margin-bottom: 10px;
  color: #5a7a9c;
}

.page-content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-content-section table th,
.page-content-section table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eaeff5;
}

.page-content-section table th {
  background: linear-gradient(90deg, #0a1929 0%, #1d2e3c 100%);
  color: white;
  font-weight: 600;
}

.page-content-section table tr:last-child td {
  border-bottom: none;
}

.page-content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-content-section .formula {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-family: "Courier New", monospace;
  text-align: center;
  font-size: 1.125rem;
  border-left: 4px solid #4fc3f7;
}

/* Resources Videos page specific */
.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 25px;
  height: 100%;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.video-thumbnail {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1929;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.video-card:hover .play-icon {
  transform: scale(1.1);
}

.video-content {
  padding: 20px;
}

.video-content h3 {
  color: #0a1929;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.video-content p {
  color: #5a7a9c;
  font-size: 0.875rem;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  color: #8a9fb5;
  font-size: 0.8125rem;
  border-top: 1px solid #eaeff5;
  padding-top: 15px;
}

.video-container iframe {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://picsum.photos/1920/600?random=30") no-repeat center
      center/cover;
  color: white;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.service-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(33, 150, 243, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.content-section {
  padding: 80px 0 0 0;
}

.content-section h2 {
  color: #0a1929;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.content-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7 0%, #2196f3 100%);
  border-radius: 2px;
}

.content-section p {
  color: #5a7a9c;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.feature-box h4 {
  color: #0a1929;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: #5a7a9c;
  margin-bottom: 0;
}

.case-study {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.case-study h3 {
  color: #0a1929;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.case-study p {
  color: #5a7a9c;
  margin-bottom: 15px;
}

.quote-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-form h3 {
  color: #0a1929;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-select:focus {
  border-color: #4fc3f7;
  box-shadow: 0 0 0 0.25rem rgba(79, 195, 247, 0.25);
  outline: 0;
}

.form-label {
  color: #0a1929;
  font-weight: 500;
  margin-bottom: 8px;
}

.video-meta span {
  display: flex;
  align-items: center;
}

.video-meta i {
  margin-right: 5px;
  font-size: 1rem;
}

/* Contact Engineer Button Styles */
.btn-contact-engineer {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  padding: 14px 30px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  z-index: 1;
}

.btn-contact-engineer:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: -1;
}

.btn-contact-engineer:hover:before {
  left: 100%;
}

.btn-contact-engineer i {
  font-size: 1.125rem;
  transition: transform 0.3s;
}

.btn-contact-engineer:hover i {
  transform: rotate(15deg);
}

.swiper-container-product {
  float: left;
  width: 50%;
}

.swiper-container-product .swiper-slide {
  box-shadow: none !important;
}

.swiper-image-box {
  width: 100%;
  height: 80%;
}

.mySwiperImg {
  padding: 0 !important;
}

.swiper-thumbs-box {
  width: 100%;
  height: 20%;
}

.mySwiperThumbs {
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiperThumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiperThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiperThumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
  background-color: #3d9cd2;
  color: white;
}

.woocommerce-result-count {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 15px;
  font-size: 1rem;
  background-color: white;
}

/* Media Queries */

@media (max-width: 991.98px) {
  .product-overview-img {
      flex: 0 0 120px;
      height: 100px;
    }
  
  .product-info {
      margin-top: 30px;
    }
    .product-gallery {
      margin-bottom: 30px;
    }
  
  .product-overview-img {
      flex: 0 0 120px;
      height: 100px;
    }
  
  .tech-sidebar {
      margin-bottom: 30px;
    }
    .subcategory-header {
      flex-direction: column;
      align-items: flex-start;
    }
    .subcategory-header .ms-auto {
      margin-top: 15px;
      margin-left: 0 !important;
    }
  
  .tech-sidebar {
      margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
  .product-overview-img {
      flex: 0 0 auto;
      width: 100%;
      height: 200px;
      margin-bottom: 15px;
    }
    .product-overview-item {
      flex-direction: column;
    }
  
  .product-overview-img {
      flex: 0 0 auto;
      width: 100%;
      height: 200px;
      margin-bottom: 15px;
    }
    .product-overview-item {
      flex-direction: column;
    }
  
  .tech-content-section {
      padding: 25px;
    }
    .quote-section {
      padding: 25px;
    }
  
  .page-content-section {
      padding: 25px;
    }
}

@media (min-width: 992px) {
  .subcategory-products {
      grid-template-columns: repeat(4, 1fr);
    }
}

@media all and (min-width: 992px) {
  ul.depth_1 {
      left: 100% !important;
      top: 0% !important;
    }
    ul.depth_0 > .menu-item-has-children a {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    ul.depth_0 > .menu-item-has-children a:after {
      display: inline-flex;
      content: "";
      border-color: transparent;
      border-style: solid;
      border-width: 5px 0 5px 5px;
      border-left-color: #cccccc;
    }
    ul.depth_1 a:after {
      border: 0 !important;
    }
}




.btn-size-lg {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem ;
}
.section-title h2 {
  font-size: 2rem;
}

.swiper-container-product {
  float: none !important;
  width: 100% !important;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  float: none !important;
  width: 100% !important;
  clear: none;
}



@media (min-width: 576px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
  
}

@media (min-width: 1200px) {
  .btn-size-lg {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }

}

@media (min-width: 1400px) {
  
}
