:root {
  /* **************font family initialization******************** */
  --font: "Saira Semi Condensed", sans-serif;
  --font2: "Saira Semi Condensed", sans-serif;

  /* **************font size initialization******************** */
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --liner2: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.93)
  );
  --pri: #ed3237;
  --sec: #333;
  --text-color: #222222;
  --text-light: #cccccc;
  --para-color: #6d6c74;
  --border-color: rgba(0, 0, 0, 0.1);
  --white: #fff;
  --off-white: #f5f5f5;
  --box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
  --box-shadow-inset: 0 0 50px 1px rgba(0, 0, 0, 0.08) inset;
  --box-shadow-inset-sm: 0 0 20px 1px rgba(0, 0, 0, 0.1) inset;
  --bs-primary: #0082ff;
  --bs-success: #03b562;
  --bs-info: #0fbcf9;
  --bs-warning: #ffa909;
  --bs-danger: var(--pri);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
}

.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 30px;
}

.head-sec.text-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--pri);
  align-content: center;
  font-family: var(--font);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.head-sec .tt span {
  color: var(--pri);
}

.head-sec p {
  font-size: 15px;
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .sub-tt::before {
  border-bottom: 1px solid var(--white);
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.head-sec.text-white p {
  opacity: 0.8;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt,
.cmTitle {
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
  color: var(--font);
}

.cmTitle {
  color: var(--pri);
  font-size: 25px;
  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt,
.content-sec h4,
.content-sec h5 {
  font-size: 25px;
  color: var(--text-color);
}

.content-sec ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}

.content-sec p {
  margin-bottom: 10px;
}

.content-sec p,
.content-sec ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 400;
}

.content-sec ul li {
  margin-bottom: 3px;
  position: relative;
  padding-left: 20px;
}

.content-sec ul li::before {
  content: "➤";
  position: absolute;
  left: 0px;
  color: var(--pri);
  font-size: 15px;
  top: 1px;
}

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li {
  padding-left: 0;
}

ul.footer-menu-list li::before {
  content: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  display: inline-block;
  line-height: 1.8;
  position: relative;
  text-transform: capitalize;
  color: var(--white);
  opacity: 0.9;
}

ul.footer-menu-list li a:hover {
  color: var(--pri);
  opacity: 1;
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--white);
  opacity: 0.8;
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

.expend-content-sec {
  max-height: 480px; /* collapsed height */
  overflow: hidden;
}

.expend-content-sec.expanded {
  max-height: 10000px; /* expanded height */
  overflow: unset;
}

.read-toggle {
  display: inline-block;
  color: var(--para-color);
  cursor: pointer;
  font-weight: 500;
  margin-top: 10px;
  user-select: none;
}

.read-toggle:hover {
  color: var(--text-color);
}

.abt-img-bx {
  float: right;
  max-width: 540px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.abt-img-bx img {
  aspect-ratio: 1 / 1;
}

.pro-bx {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
  /* border-radius: 4px; */
  overflow: hidden;
  background-color: #fff;
  height: 100%;
}

.pro-bx .img {
  overflow: hidden;
}

.pro-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-bx:hover img {
  transform: scale(1.05);
}

.pro-bx .tx-bx {
  padding: 15px;
}

.pro-bx .tx-bx .tt {
  margin-bottom: 4px;
}

.pro-bx .tx-bx .tt a,
.pro-bx .tx-bx .tt {
  color: var(--text-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-transform: capitalize;
}

.pro-bx .tx-bx .tt:hover a {
  color: var(--pri);
}

.pro-bx .tx-bx p {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 12px;
}

.read-mr {
  font-size: 15px;
  color: var(--pri);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.read-mr svg {
  transition: 0.1s ease-in-out;
  width: 13px;
  height: 13px;
}

.read-mr:hover svg {
  transform: translateX(2px);
}

.read-mr:hover {
  color: var(--para-color);
}

.main-btn {
  padding: 15px 20px;
  color: var(--white);
  border: 1px solid var(--sec);
  background-color: var(--sec);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font2);
  text-transform: uppercase;
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 0px;
  line-height: 1;
}

.main-btn.light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.main-btn.light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--pri);
}

.main-btn.sm {
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 400;
}

.main-btn:hover {
  background: var(--pri);
  color: var(--white);
  border-color: var(--pri);
}

.main-btn2 {
  color: var(--white);
  background-color: var(--pri);
  border-color: var(--pri);
}

.main-btn2:hover {
  background-color: var(--white);
  border-color: var(--pri);
  color: var(--pri);
}

.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
}

.product .g-recaptcha {
  transform: scale(1.04);
  transform-origin: 0 0;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(163, 205, 234, 0.2);
  height: 37px;
}

header {
  position: relative;
  z-index: 10;
}

.top-bar {
  background-color: var(--pri);
  padding: 8px 0;
}

.top-bar p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--off-white);
}

.top-bar p span {
  margin-right: 20px;
}

.top-bar p svg {
  margin-right: 2px;
}

.top-bar p a {
  color: var(--white);
}

.top-bar p a:hover {
  color: var(--sec);
}

.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 13px;
  margin-bottom: 0;
  padding: 0;
}

.social li a {
  color: var(--off-white);
}

.social li a svg {
  width: 15px;
  height: 15px;
}

.social li a:hover {
  color: var(--sec);
}

.mid-bar {
  background-color: white;
}

.mid-bar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* background: var(--pri); */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  background-color: var(--white);
}

.logo img {
  max-width: 240px;
}

.menubar {
  position: relative;
  background-color: var(--white);
}

.menubar .logo {
  display: none;
}

.menubar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: var(--pri);
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 23px 11px;
  display: block;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: var(--font2);
  background: transparent;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--pri);
  background: transparent;
  text-decoration: none;
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: var(--white);
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: 250px;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  color: var(--white);
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: var(--sec);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: var(--white);
  background: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--text-color);
  font-size: 14px;
  padding: 5px 11px;
  background-color: var(--off-white);
  position: relative;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--pri);
}

.navigation ul li.ls-submenu a button svg {
  width: 14px;
  height: 14px;
  color: var(--sec);
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--hover-color2);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: var(--sec);
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: var(--white);
}

.navigation .navbar {
  display: none;
  padding: 8px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 190px;
  width: max-content;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: var(--para-color);
  margin: 0;
  padding: 0;
  text-align: left;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.call-now {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  /* border-right: 1px dashed var(--border-color); */
}

.call-now .icon-bx {
  min-width: 30px;
  width: 30px;
  height: 30px;
  color: white;
  background: var(--pri);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-now .con-bx {
  text-align: left;
}

.call-now .con-bx a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: normal;
  text-transform: none;
  text-decoration: none;
}

.call-now .con-bx a:hover {
  color: var(--pri);
}

/* /serching box************ */
.search-bx {
  display: flex;

  align-items: center;

  border: 1px solid var(--border-color);

  border-radius: var(--radius);

  overflow: hidden;
}

.search-bx input {
  width: 100%;

  max-width: 100%;

  outline: none;

  border: none;
  background: var(--white);
  color: var(--sec);

  font-weight: 400;

  height: 48px;
  padding-left: 20px;

  font-size: 15px;

  min-width: 180px;
}

.search-bx button {
  outline: none;

  border: none;

  height: 48px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding-right: 15px;

  color: var(--pri);

  background: transparent;
}

/* *******************************footer section code*************************************** */
.cta-section {
  position: relative;
  /* Background Image (Silos) */
  background-image: url("../images/ft-img.webp");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* The Orange Slanted Overlay */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, var(--pri) 35.1%);
  z-index: 1;
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .cta-section {
    background-position: center;
    position: relative;
  }
  .cta-overlay {
    background: rgba(255, 20, 20, 0.55); /* Solid semi-transparent orange */
  }
}

/* --- Footer Main Area --- */

.footer-area {
  background-image: linear-gradient(
      rgba(10, 0, 0, 0.95),
      rgba(30, 30, 30, 0.95)
    ),
    url("../images/ft-bg.webp");
  /* Dark Industrial BG */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 250px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--off-white);
  color: var(--pri);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  background-color: var(--pri);
  color: white;
  transform: translateY(-3px);
}

.title-divider {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  position: relative;
  margin-top: 5px;
}

.title-divider::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 5px;
  height: 2px;
  background-color: var(--white);
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--off-white);
  padding-left: 5px;
}

.contact-itemf {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: var(--pri);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  margin-right: 15px;
  font-size: 18px;
}

/* --- Copyright Bar --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0 10px 0;
  color: var(--white);
  font-size: var(--small-text);
}

.bottom-links a {
  color: var(--off-white);
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-widget-title {
    margin-top: 30px;
  }

  .social-links {
    margin-bottom: 20px;
  }

  .title-no-margin-mobile {
    margin-top: 0 !important;
  }
}

/* Popular Searches */
.foot08-head {
  color: var(--white);
}

.ft-sep {
  margin-right: 30px;
}

.foot08-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 6px;
  font-size: 15px;
}

.foot08-popular-list li {
  color: var(--white);
}

.foot08-popular-list li::after {
  margin-left: 12px;
  color: var(--white);
}

.foot08-popular-list li:last-child::after {
  content: "";
}

.foot08-popular-list a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.foot08-popular-list a:hover {
  color: var(--border-light);
}

.foot08-muted {
  color: var(--white-color) !important;
}

/* ************************************************hero section code section ***************************************/
#scrollTopBtn {
  position: fixed;
  bottom: 50px;
  left: 30px;
  z-index: 99;
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  animation: arrowBounce 1.5s infinite ease-in-out;
}

#scrollTopBtn img {
  width: 60px;
  height: 60px;
  background: transparent;
}
@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px); /* move up */
  }
  60% {
    transform: translateY(0); /* back to normal */
  }
  100% {
    transform: translateY(0);
  }
}

.Marquee {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.Marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.Marquee-tag {
  display: inline-block;
  padding-left: 1rem;
  font-size: 1.2rem;
  white-space: nowrap;
}

.Marquee-tag p {
  color: var(--text-color);
}

/* --- Left Content Styling --- */
.eyebrow-section {
  color: var(--pri);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}

/* Small circle and line indicator */
.eyebrow-section::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: var(--sec);
  margin-left: 10px;
}

.head-sec.text-white .eyebrow-section::after {
  background-color: var(--white);
}

.eyebrow-section svg {
  margin-left: 5px;
  color: currentColor;
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: 2px;
}

.leadsure {
  padding: 56px 0;
}

.leadsureheading {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--font);
  color: var(--text-color);
  margin-bottom: 0;
}

.leadsurepara {
  font-size: 16px;
  color: var(--para-color);
  line-height: 1.6;
  font-weight: 400;
}

.leadseo p {
  font-size: 15px;
  color: var(--para-color);
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 7px;
}
.leadseo ul,
.leadseo li {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 5px;
}
ul {
  padding-left: 1rem;
}

.leadsuresubheading {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  font-family: var(--font);
}

.leadseo h1,
.leadseo h2,
.leadseo h3,
.leadseo h4,
.leadseo h5,
.leadseo h6 {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  font-family: var(--font);
}

.lead3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  color: var(--para-color);
  line-height: 1.6;
}

.lead2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  color: var(--para-color);
  line-height: 1.6;
}

.lead1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font);
}

.heading-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}

.heading-underline {
  height: 4px;
  width: 60px;
  border-radius: 2px;
  background: var(--pri);
}

.section-title {
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--title-size);
  margin-bottom: 35px;
  font-family: var(--font);
  position: relative;
  z-index: 3;
}

.colordhead {
  color: var(--sec);
  font-family: var(--font);
}

.faq-title {
  font-size: var(--title-size);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: var(--font);
}

main,
main img {
  overflow: hidden;
  display: block;
  width: 100%;
}

#carouselExampleAutoplaying,
#carouselExampleAutoplaying img {
  aspect-ratio: 1920 / 750;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 13px;
    width: 13px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

.swiper-next,
.swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
  border: 1px solid #eee;
  background-color: white;
  color: var(--text-light);
  width: 35px;
  height: 35px;
  z-index: 2;
  border-radius: 100%;
  text-align: center;
}

.swiper-next svg,
.swiper-prev svg {
  width: 18px;
  height: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
  color: white;
  background-color: var(--pri);
  border-color: var(--pri);
}

.swiper-button-next,
.swiper-next {
  right: 25px;
  left: auto;
}

.swiper-button-prev,
.swiper-prev {
  left: 25px;
  right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 13px;
  font-weight: 600;
}

.swiper_wrap {
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

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

.swiper-slide {
  height: auto;
}

.swiper-prev {
  left: -22px;
  right: auto;
}

.swiper-next {
  right: -22px;
  left: auto;
}

#sticky {
  position: sticky;
  top: 100px;
  z-index: 2;
}

main {
  overflow: unset;
}

/******************* about us section code************* */

.about-section {
  background-color: var(--white);
}

/* --- Checklist --- */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.list-icon {
  color: var(--pri);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* --- Right Image Styling --- */
.about-image-container {
  aspect-ratio: 4/3;
  height: auto;
  width: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ****************************our products section code**************************** */
/* --- Section Styling --- */
.product-section {
  background-image: url("../images/home-bg-01.webp");
  /* Dark Industrial BG */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

/* Dark Overlay */
.product-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(19, 19, 19, 0.8), rgba(15, 15, 15, 0.9)),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px
    );
  z-index: -1;
}

/* Custom Swiper Buttons */
.swiper-nav-btns {
  display: flex;
  gap: 10px;
}

.custom-swiper-btn {
  width: 50px;
  height: 50px;
  background-color: var(--pri);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 1;
}

.custom-swiper-btn:hover {
  background-color: var(--hover-color2);
}

/* --- Product Card Styling --- */
.product-wrapper {
  padding-top: 120px;
  padding-bottom: 20px;
}

.product-card {
  background-color: #fff;
  border-radius: var(--card-border-radius);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* Floating Circle Image */
.product-img-circle {
  width: 200px;
  height: 200px;
  background-color: #fff;
  /* border-radius: 50%; */
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  z-index: 10;
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.product-img-circle img {
  aspect-ratio: 1/1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Card Content */
.card-body-content {
  padding: 90px 15px 1px 15px;
  background-color: var(--off-white);
}

/* Red Footer Action Bar */
.product-footer {
  background-color: var(--pri);
  padding: 15px 25px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.product-footer:hover {
  background-color: var(--sec);
  transition: 0.4s ease;
}

.add-btn {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* why choose us section code************************ */
.choose-us-section {
  background-color: var(--white);
}

/* --- Icon Box Styling --- */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 10px;
  /* Spacing between items vertically */
}

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

.icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  /* Prevent shrinking */
  background-color: var(--pri);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin-top: 5px;
  /* Align slightly with text top */
}

.center-img {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius);
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); Optional shadow */
  object-fit: cover;
}

/* --- Desktop Specific Alignments (The "Sandwich" Effect) --- */
@media (min-width: 992px) {
  /* Left Column: Icon Left, Text Right */
  .left-col .feature-item {
    flex-direction: row;
  }

  .left-col .feature-content {
    padding-left: 20px;
  }

  /* Right Column: Icon Right, Text Left */
  .right-col .feature-item {
    flex-direction: row-reverse;
    /* Flips the flex order */
    text-align: right;
  }

  .right-col .feature-content {
    padding-right: 20px;
  }
}

/* --- Mobile/Tablet Adjustments --- */
@media (max-width: 991px) {
  .feature-item {
    margin-bottom: 0;
  }

  /* Reset to standard Left-Icon -> Right-Text layout on mobile */
  .right-col .feature-item {
    flex-direction: row;
    text-align: left;
  }

  .right-col .feature-content {
    padding-left: 0;
    padding-right: 0;
  }

  .center-image-col {
    order: -1;
    /* Move image to top on mobile if desired, or remove to keep in middle */
    margin-bottom: 40px;
  }
}

/* request a quotet section code*************** */

.consultation-section {
  background: url(../images/enq_img.png);
  background-size: cover;
  /* background-position: center; */
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.left-content-wrapper {
  width: 100%;
  z-index: 2;
}

/* Information Cards */
.info-card {
  background-color: var(--white);
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card:last-child {
  margin-bottom: 0;
}

.card-left-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon svg {
  color: var(--pri);
  /* Outline style via FontAwesome */
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 3px;
  align-content: center;
}

.card-left-content .leadsureheading {
  font-size: 20px;
  margin-bottom: 0;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  max-width: 300px;
}

/* Red Arrow Button */
.arrow-btn {
  background-color: var(--pri);
  color: #fff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  /* Prevent shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.arrow-btn:hover {
  background-color: #b00320;
  color: #fff;
}

.arrow-btn svg {
  width: 20px;
  height: 20px;
}

/* --- RIGHT PANEL --- */
.right-panel {
  background-image: url("https://media.istockphoto.com/id/518000429/photo/repair-tool.jpg?s=612x612&w=0&k=20&c=s-ZMAzRfU7uKvSsUycZnm99_2mVI6JFCSrd_jLNoc1o=");
  /* Legal/Dark BG */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.form-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.placeholder-light::placeholder {
  color: #f8f9fa;
  /* Bootstrap light color */
  opacity: 0.8;
  /* optional */
}

/* ***************************SEO SECTION CODE****************** */

.section-highlight {
  background: var(--off-white);
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.blinking-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pri);
  box-shadow: 0 0 4px var(--pri);
  animation: blink 1.5s infinite;
  border: 3px solid white;
}

@keyframes blink {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.leaflet-popup {
  background: white;
  color: var(--pri);
  /* box-shadow: 0 0 15px rgba(138, 1, 1, 0.4); */
  /* RED shadow */
  border-radius: 12px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 5px 5px 5px 10px !important;
  line-height: 1.3;
  font-size: 10px;
  color: var(--sec);
  min-height: 1px;
}

.leaflet-right .leaflet-control {
  display: none;
}

.feature-copy {
  position: relative;
  /* box-shadow: 12px 12px 0px 0 var(--sec); */

  padding: 10px 10px;

  overflow: hidden;
}

/* Collapse content initially */

.feature-copy .seo-content61 {
  max-height: 335px;

  overflow: hidden;

  transition: max-height 0.5s ease;
}

.scrollcard {
  width: 100%;
}

.scrollcard img {
  aspect-ratio: 1/1;

  /* box-shadow: 15px 15px 0px 0 var(--sec); */

  object-fit: cover;
}

.read-more-toggle {
  display: none;
}

.read-more-toggle:checked ~ .seo-content61 {
  overflow-y: auto;

  scrollbar-width: thin;
}

.read-more-btn {
  display: block;

  text-align: left;

  margin-top: 10px;

  color: var(--btn-color);

  font-size: 18px;

  cursor: pointer;

  transition: color 0.3s;
}

.read-more-btn::after {
  content: "Show More...";

  color: var(--pri);

  font-size: 15px;
}

.read-more-btn:hover::after {
  color: var(--sec);
}

.read-more-btn:hover::before {
  color: var(--pri);
}

.read-more-toggle:checked ~ .read-more-btn::after {
  content: "Show Less...";

  color: var(--hover-color);

  font-size: 15px;
}

/* industry we serve section code *******************/
.features-section1 {
  background-color: var(--white);
}

.feature-item1 {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

.icon-circle1 {
  width: 70px;
  height: 70px;
  background-color: var(--pri);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 28px;
  margin-right: 25px;
  transition: transform 0.3s ease;
}

.feature-item1:hover .icon-circle1 {
  transform: rotateY(180deg);
}

/* *********************faq section code******************** */
.faq-section {
  background-color: var(--off-white);
}

.image-col {
  position: relative;
  aspect-ratio: 4/3;
  background-image: url("../images/faq.webp");
  /* Placeholder matching female engineer */
  background-size: cover;
  background-position: center;
}

/* The Angled White Overlay Box */
.skills-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  /* Cover most of the width */
  background-color: var(--white);
  padding: 30px 80px 30px 40px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

/* Progress Bar Styling */
.skill-item {
  margin-bottom: 20px;
}

.skill-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: var(--sec);
}

.progress {
  height: 6px;
  background-color: var(--off-white);
  border-radius: 0;
  overflow: visible;
}

.progress-bar {
  background-color: var(--pri);
  position: relative;
  overflow: visible;
}

/* --- Right Side: FAQ Accordion --- */
.content-col {
  background-color: var(--white);
  /* Diagonal texture pattern */
  background-image: var(--sec);
  padding: 40px;
  align-content: center;
}

/* Accordion Styling */
.custom-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  background-color: #fff;
}

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

.custom-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  background-color: var(--off-white);
  padding: 15px 20px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--pri);
  /* background-color: var(--white); */
  box-shadow: none;
  /* Remove default blue glow */
}

/* Custom Icons (+ / -) */
.custom-accordion .accordion-button::after {
  content: "\2b";
  /* Plus sign */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none;
  font-size: 18px;
  color: var(--sec);
  transform: none;
  /* Stop default rotation */
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  /* Minus sign */
}

.accordion-body {
  color: var(--para-color);
  font-size: 15px;
  line-height: 1.7;
  padding: 18px 20px;
}

/* --- Responsive Tweaks --- */
@media (max-width: 991px) {
  .image-col {
    min-height: 400px;
  }

  .skills-overlay {
    width: 100%;
    clip-path: none;
    /* Remove slant on mobile for better fit */
    padding: 30px;
  }

  .content-col {
    padding: 50px 20px;
  }
}

/* blog section code***************************************** */
.blog-section {
  background: var(--white);
}

.blog-bx {
  box-shadow: 0px 0px 60px 0px rgba(16, 23, 40, 0.06);
  background-color: white;
}

.blog-bx.blog-card {
  display: flex;
}

.blog-bx.blog-card .img-bx {
  min-width: 120px;
  width: 120px;
}

.blog-bx .img-bx {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-bx .img-bx img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx .img-bx:hover img {
  transform: scale(1.03);
}

.blog-bx .tx-bx {
  padding: 25px;
}

.blog-sec .main-tt {
  padding-left: 13px;
  padding-block: 3px;
  font-weight: 700;
  border-left: 5px solid var(--pri);
  font-size: 25px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.blog-sec .img-bx {
  margin: 20px auto 0;
  text-align: center;
  max-width: 700px;
}

.blog-sec .img-bx img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-date {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 15px;
  margin-bottom: 10px;
}

.blog-date li {
  color: var(--sec);
  line-height: 1;
}

.blog-date li svg {
  margin-top: -2px;
  margin-right: 3px;
}

.blog-date li:first-child {
  background-color: var(--pri);
  color: white;
  padding: 8px;
}

.blog-bx .tx-bx .tt a,
.blog-bx .tx-bx a.tt {
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-bx .tx-bx .tt a:hover,
.blog-bx .tx-bx a.tt:hover {
  color: var(--pri);
}

.blog-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.overlay-blog-bx {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px 1px;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.overlay-blog-bx .img{
  overflow: hidden;
}

.overlay-blog-bx .img,
.overlay-blog-bx img {
  width: 100%;
  aspect-ratio: 70 / 39;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease-in-out;
}

.overlay-blog-bx:hover img {
  transform: scale(1.05);
}

.overlay-blog-bx .tx-bx {

  padding: 20px 30px;
  z-index: 2;
}

.overlay-blog-bx .tx-bx .date {
  display: inline-block;
  padding: 10px;
  background-color: var(--pri);
  color: white;
  font-weight: 600;
  line-height: 1;
}

.overlay-blog-bx .tx-bx .tt {
  font-size: 22px;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.card-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.card-link-wrapper:hover {
  text-decoration: none;
  color: inherit;
}

/* --- Right Side Post List --- */
.right-col-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px; /* This controls space between cards now */
  height: 100%;
}

.small-post-card {
  display: flex;
  align-items: center;
  background: var(--off-white);
  transition: transform 0.3s;
  /* Removed margin-bottom here to let gap handle spacing */
}

.small-post-img {
  aspect-ratio: 4/3;

  max-width: 200px;
  max-height: 150px;
  width: 200px;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}

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

/* Hover Effects on the Wrapper Link */
.card-link-wrapper:hover .featured-bg-img,
.card-link-wrapper:hover .small-post-img img {
  transform: scale(1.1);
}

.small-post-content {
  flex-grow: 1;
}

.post-meta {
  color: var(--pri);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.small-post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

/* --- Read More Button Styling --- */
.read-more-btnX {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--pri);
}

.card-link-wrapper .small-post-content .read-more-btnX:hover {
  color: var(--sec);
  transform: translateX(5px);
}

/* *******************matrix section code/******************** */
.matrix-section {
  background-color: var(--white);
}

.stat-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: relative;
}

/* --- Vertical Divider Logic --- */
.stat-col {
  position: relative;
}

.stat-col::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background-color: #e5e7eb;
}

/* Remove divider for the last item and on mobile */
.stat-col:last-child::after {
  display: none;
}

@media (max-width: 991px) {
  .stat-col::after {
    display: none;
  }

  .stat-col {
    margin-bottom: 40px;
  }

  .stat-col:last-child {
    margin-bottom: 0;
  }
}

/* --- Circular Progress --- */
.progress-circle-container {
  width: 110px;
  height: 110px;
  position: relative;
  flex-shrink: 0;
}

.progress-svg {
  transform: rotate(-90deg);
  /* Start from top */
  width: 100%;
  height: 100%;
}

.progress-bg {
  fill: var(--off-white);
  stroke: none;
}

.progress-bar {
  fill: none;
  stroke: var(--pri);
  stroke-width: 6px;
  stroke-linecap: round;
  /* 2 * PI * R (approx 45 radius) = ~283 */
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  /* Start empty */
  transition: stroke-dashoffset 2s ease-out;
}

.icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--pri);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-overlay svg {
  /* Adjust stroke width if using regular fontawesome or custom SVG */
  -webkit-text-stroke: 1px transparent;
}

.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 5px;
}

/* ******************about us section code************** */
/* our mission and vision section code */

.philosophy-section {
  background-color: var(--pri);
}

.flip-card {
  position: relative;
  height: 350px;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: var(--sec);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.flip-card-front {
  opacity: 1;
  z-index: 2;
}

.card-front-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

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

.card-front-icon-wrapper {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
}

/* ---------------------------------

        4. Card Back (Hidden State)

        --------------------------------- */

.flip-card-back {
  opacity: 0.6;
  z-index: 1;
  background-color: var(--sec);
}

.flip-card:hover .flip-card-front {
  opacity: 0;
}

.flip-card:hover .flip-card-back {
  opacity: 1;
}

.flip-card-inner .leadsurepara {
  font-size: 20px;
}

/* faq page ******************************* */

.faq-section62 {
  background-color: var(--white);
  padding: 6px 0px 56px 0px;
}

/* --- Bootstrap Nav Tabs Styling --- */
.faq-nav-tabs {
  border-bottom: none;
  justify-content: center;
}
.nav-link {
  margin-bottom: 5px;
}
.faq-nav-tabs .nav-link {
  border: none;
  color: var(--white);
  background-color: var(--pri);
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  margin: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.faq-nav-tabs .nav-link:hover {
  background: var(--hover-color1);
}
.faq-nav-tabs .nav-link.active {
  color: var(--white);
  background-color: var(--hover-color1);
}

.custom-accordion-item {
  border-radius: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  padding: 18px;
  background-color: white;
}
.custom-accordion-question {
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.custom-accordion-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--para-color);
  transition: max-height 0.3s ease-in-out, padding-top 0.3s ease-in-out;
}

/* Active State (Toggled by JavaScript) */
.custom-accordion-item.active .custom-accordion-question {
  color: var(--pri);
}
.custom-accordion-item.active .custom-accordion-answer {
  max-height: 200px;
  padding-top: 3px;
  font-size: 16px;
}

/* Plus/Minus Icon */
.icon-toggle {
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--pri);
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
}
.custom-accordion-item.active .icon-toggle {
  background-color: var(--sec);
  background-image: none;
}

.custom-accordion-item.active .icon-toggle::after {
  content: "−"; /* minus sign */
}

/* Default state: show plus */
.icon-toggle::after {
  content: "+"; /* plus sign */
}

.faq-redesign-section {
  background-color: var(--white);
}

.faq-nav-vertical .nav-link {
  text-align: left;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--text-color);
  background-color: white;
  font-weight: 500;
}

.faq-nav-vertical .nav-link:first-child {
  border-top: none;
}

/* Style for the active nav link */

.faq-nav-vertical .nav-link.active {
  color: var(--pri);

  border-left: 3px solid var(--pri);

  font-weight: 600;
}

.faq-nav-vertical .nav-link.active {
  border-top-color: transparent;
}

/* *********category related product code section***************** */
.feature-copy .seo-content2 {
  max-height: 440px;

  overflow: hidden;

  transition: max-height 0.5s ease;
}

.read-more-toggle {
  display: none;
}

.read-more-toggle:checked ~ .seo-content2 {
  overflow-y: auto;
  scrollbar-width: thin;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.section-14 {
  background-color: var(--off-white);
}

.ultproducts-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border-radius: var(--radius);

  background-color: var(--white);
}

.card-footer {
  background-color: var(--white);
}

.ultproducts-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.ultproducts-img-ratio {
  position: relative;

  width: 100%;

  padding-top: 100%;

  overflow: hidden;
}

.ultproducts-img-ratio img {
  aspect-ratio: 1 / 1;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: auto;

  object-fit: cover;
}

.ultproducts-img-container {
  overflow: hidden;
}

.ultproducts-img-top {
  transition: transform 0.4s ease;
}

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

.ultproducts-link {
  color: var(--btn-color2);

  font-size: 15px;
}

.ultproducts-link svg {
  color: var(--pri);
}

.ultproducts-link:hover {
  color: var(--hover-color2);
}

.ultproducts-title-link {
  text-decoration: none;
}

.ultproducts-title:hover {
  color: var(--hover-color2);
}

/* **************breadcome section code********************* */

.img-breadcum {
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.img-breadcum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.img-breadcum::before {
  background: linear-gradient(180deg, rgba(22, 29, 37, 0.5), rgb(22, 29, 37));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.img-breadcum .sub-tt {
  color: var(--off-white);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: var(--pri);
  padding: 6px 9px;
  display: inline-block;
  text-transform: capitalize;
}

.img-breadcum .tt {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 0px;
  color: var(--off-white);
  max-width: 650px;
  margin: 0 auto;
  text-transform: capitalize;
}

.img-breadcum p {
  color: var(--white);
  margin-top: 12px;
  font-size: 17px;
  margin-bottom: 0;
}

.img-breadcum.img-breadcum2 {
  text-align: left;
  padding: 60px 0;
}

.breadcum-sec {
  background-color: var(--white);
  padding: 7px 0;
  border-bottom: 1px solid #e1e1e2;
}

.breadcum-sec ul {
  display: flex;
  gap: 0 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcum-sec ul li {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0;
  position: relative;
}

.breadcum-sec ul li a {
  color: var(--text-color);
  text-decoration: none;
}

.breadcum-sec ul li a:hover {
  color: var(--hover-color1);
  font-weight: 500;
}

.breadcum-sec ul li a::before {
  content: "/";
  position: absolute;
  top: 1px;
  right: -11px;
  font-size: 14px;
  color: var(--text-color);
}

.img-breadcum {
  padding: 70px 0 60px;
}

/* ***********************************popup code **************************** */

.enquiry-dialog {
  max-width: 350px;
}

.iti__country-list {
  max-width: 280px;
}

.enquiry-card {
  border: none;
  border-radius: 12px;
  padding: 12px 16px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.modal.fade .modal-dialog {
  transform: translate(0, 0);
}

.modal-backdrop.show {
  opacity: 0.35;
}

.modal-title {
  color: var(--header-color);
}

.enquiry-input:focus {
  border-color: var(--text1-color);
  box-shadow: 0 0 0 0.2rem rgba(231, 237, 107, 0.08);
}

.enquiry-submit {
  background: var(--btn-color);
  color: var(--white);
  border-radius: var(--radius);
  padding: 4px 8px;
}

.enquiry-submit:hover,
.enquiry-submit:focus {
  background: var(--pri);
  border-color: var(--white);
}

textarea.enquiry-input {
  resize: vertical;
}

.enquiry-input:focus {
  border-color: #cfd6e3;
  box-shadow: 0 0 0 0.2rem rgba(217, 253, 13, 0.08);
}

.enquiry-submit {
  background: var(--btn-color);
  color: var(--white);
  font-size: 1rem;
}

.enquiry-submit:hover,
.enquiry-submit:focus {
  background: var(--pri);
  color: var(--white);
}

/* Product image inside modal */
.modal-body .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.popupheading {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}

/* ===== Floating Action Buttons (FAB) ===== */
.fab-stack {
  --fab-size: 52px;
  --fab-gap: 12px;
  position: fixed;
  right: calc(35px + env(safe-area-inset-right, 0));
  bottom: calc(30px + env(safe-area-inset-bottom, 0));
  display: flex;
  flex-direction: column;
  gap: var(--fab-gap);
  z-index: 1040;
}

.fab-btn {
  width: var(--fab-size);
  height: var(--fab-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background-color: var(--header-color2);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  outline: none;
  animation: email-an linear 1s infinite;
}

@keyframes email-an {
  0% {
    box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 0 rgba(0, 171, 86, 0.2),
      0 0 0 0 rgba(0, 171, 86, 0.2);
  }

  50% {
    box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 15px rgba(0, 171, 86, 0),
      0 0 0 16px rgba(0, 171, 86, 0.067);
  }

  100% {
    box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 18px rgba(0, 171, 86, 0),
      0 0 0 20px rgba(0, 171, 86, 0);
  }
}

.business-enq {
  position: fixed;
  bottom: 55px;
  right: 20px;
  font-weight: 500;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 14px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--text-color);
}

.business-enq .icon svg {
  height: 18px;
  color: var(--pri);
  width: 18px;
}

.form-group {
  position: relative;
  margin-bottom: 13px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 400;
  border-radius: 0px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  border-color: var(--border-color);
  height: 40px;
  align-content: center;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: #e3e3e3;
  box-shadow: none;
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.fab-whatsapp {
  background: #25d366;
  border: 1px solid #25d366;
}

@media (prefers-reduced-motion: reduce) {
  .fab-btn {
    transition: none;
  }
}

@media (min-width: 992px) {
  .fab-stack {
    right: calc(24px + env(safe-area-inset-right, 0));
    bottom: 115px;
    --fab-size: 56px;
  }
}

/* ===== Mobile contact bar (shown only < LG) ===== */
.contact-bar-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 1040;
  height: 52px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.contact-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  border: 0;
}

.contact-call {
  background: var(--pri);
  color: var(--white);
}

.contact-wa {
  background: #25d366;
  color: var(--white);
}

.contact-enq {
  background: var(--sec);
  color: var(--white);
}

.ci-icon {
  display: inline-flex;
}

.ci-label {
  line-height: 1;
}

label {
  color: #e63629;
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.form-label {
  color: #000;
}

.red {
  color: red;
}

/* product modal section code****************** */
.productmodal {
  max-width: 850px;
}

.modal-header-custom {
  color: white;
  border-bottom: none;
  background-color: var(--pri);
  padding: 15px 25px;
}

.modal-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-color);
}

.btn-close-custom {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 1;
}

.modal-body-custom {
  background-color: var(--off-white);
  padding: 30px;
}

.product-display-areamodal {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  position: relative;
}

.product-image-containermodal {
  aspect-ratio: 1 / 1;
  /* flex-grow: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-imgmodal {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-bx {
  background: #fff;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 3px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}

.gallery-bx:hover img {
  filter: blur(3px);
}

.gallery-bx.certificate-bx img,
.gallery-bx.certificate-bx {
  aspect-ratio: 164 / 235;
}

.gallery-bx img {
  max-width: 100%;
}

.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-radius: 100%;
}

.gallery-bx .link-wrap svg {
  width: 20px;
  height: 20px;
}

.gallery-bx:hover .link-wrap {
  opacity: 1;
}

.gallery-bx .tt {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 45px 20px 10px;
  pointer-events: none;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  background: linear-gradient(
    to top,
    rgba(2, 20, 4, 0.75) 10%,
    rgba(0, 0, 0, 0) 70%
  );
  text-shadow: 1px 1px 5px #000;
  z-index: 2;
}

.contact-bx.ft-bx ul.social {
  gap: 8px;
  justify-content: start;
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--pri);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  width: 35px;
  height: 35px;
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
  border: 0;
}

.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  height: 100%;
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 25px;
  line-height: 28px;
}

.contact-bx .head-sec .tt::before {
  top: 40px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 15px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.contact-bx .con-bx .ic-bx {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
  color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 500;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.map-bx {
  width: 100%;
  display: block;
}

.pr-li {
  background-color: white;
  border: 1px solid var(--off-white);
  transition: 0.2s;
  background: white;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.pr-li .img {
  overflow: hidden;
  border-right: 1px solid var(--off-white);
  height: 100%;
}

.pr-li .tx-bx {
  padding: 20px;
}

.pr-li .tx-bx .info-bx {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 13px;
}

.pr-li .tx-bx .info-bx::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pr-li .tx-bx .info-bx::-webkit-scrollbar {
  width: 5px;
}

.pr-li .tx-bx .info-bx::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

.pr-li .tt {
  font-size: 25px;
  color: var(--text-color);
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.pr-li .nav-pills .nav-link {
  border-radius: 20px;
  font-size: 16px;
  background-color: white;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.pr-li .nav-pills .nav-link.active,
.pr-li .nav-pills .show > .nav-link {
  background-color: var(--pri);
  color: var(--white);
}

th {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--border-color);
  border-style: solid;
  border-width: 1px;
  padding: 7px 10px;
  font-size: 16px;
}

.pr-li .tab-pane {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  overflow: hidden;
}

.pr-li table {
  width: 100%;
  overflow: hidden;
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0px 0px 0px 15px;
  margin-bottom: 5px;
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 500;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 14px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

.market-sec {
  padding: 60px 0;
  font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: #e8e8e8;
  color: var(--text-color);
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

.cate-img {
  max-width: 420px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}
