  :root {
  --font: "Albert Sans", sans-serif;

  --liner: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --pri: #154C98 ;
  --sec: #212529;
  --text-color: #1f1f1f;
  --text-light: #8c8c8c;
  --para-color: #707070;
  --border-color: #e3e3e3;
  --white: #fff;
  --off-white: #f6f6f6;
  --black: #212529;
  --bg: #154c9814;
  --surface: #13131c;
  --red: #e53935;
  --text: #f0f0f0;
  --muted: #666;
  --radius: 6px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--sec);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

body {
  background: var(--white);
  font-family: var(--font);
  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(--black);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font);
  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 35px;
}

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

.head-sec .sub-tt {
  padding: 7px 15px;
  border-radius: 30px;
  background-color: var(--off-white);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 8px;
  font-family: var(--font);
}

.head-sec .sub-tt.dark {
  background-color: var(--pri);
  color: var(--white);
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 700;
  font-size: 37px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  /* text-transform: capitalize; */
}

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

.head-sec p {
  font-size: 16px;
  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;
}

.w-btn {
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;
  background-color: #00b95d;
}

.main-btn {
  padding: 13px 20px;
  color: var(--white);
  border: 1px solid var(--pri);
  background-color: var(--pri);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  cursor: pointer;
}

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

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

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

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

.main-btn.light {
  background-color: var(--off-white);
  border-color: var(--off-white);
  color: var(--text-color);
  font-weight: 600;
}

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

.productBrochureandvideo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px dashed #b5b5b5;
  padding: 10px 11px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--font);
  background-color: transparent;
  border-radius: 8px;
}

.form-label {
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 4px;
}

.SumoSelect>.CaptionCont>span.placeholder {
  background-color: transparent;
  color: var(--text-color);
  opacity: 0.8;
  font-style: normal;
}

.SumoSelect {
  display: block;
  width: 100%;
}

.SumoSelect.open .search-txt {
  font-weight: 500;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: var(--border-color);
  height: 43px;
}

.SumoSelect.open>.CaptionCont,
.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont {
  box-shadow: none;
  border-color: var(--text-light);
}

.SumoSelect.open>.optWrapper {
  top: 43px;
}

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

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

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

.form-control:focus,
.form-select:focus {
  border-color: var(--text-light);
  box-shadow: none;
}

.logo {
  max-width: 170px;
  width: auto;
  height: auto;
}

.top-bar {
  /* background-color: var(--black); */
  /* border-bottom: 1px solid #5c5c5c77; */
  padding: 10px 0;
}

.top-bar p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  text-align: start;
}

.top-bar p a {
  color: var(--white);
  transition: 0.2s ease;
}

.top-bar p svg {
  color: var(--sec);
  width: 18px;
  height: 18px;
}

.top-bar p button {
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: underline;
  background-color: transparent;
  font-weight: 500;
  transition: 0.2s ease;
}

.top-bar p button:hover {
  color: var(--pri);
}

.social {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 15px;

  padding: 10px 20px;
}

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

.social svg {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: currentColor;
}

.menubar {
  background:  var(--pri);
}
.menubar .main-btn{
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid var(--white);
}

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

.menubar .main-btn svg{
  height: 15px;
  width: 15px;
}

.menubar .dropdown-menu {
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] {
  background-color: transparent;
  border: 0;
  padding: 23px 0;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] svg {
  width: 22px;
  height: 22px;
  color: var(--text-color);
  display: none;
}

.menubar .dropdown button[data-bs-toggle="dropdown"]:not(.show) svg.close {
  display: block;
}

.menubar .dropdown button[data-bs-toggle="dropdown"].show svg.open {
  display: block;
}

.search-bx {
  display: flex;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  /* overflow: hidden; */
  padding: 0;
  padding-left: 0;
  background-color: var(--off-white);
}

.search-bx input {
  width: 100%;
  max-width: 100%;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 500;
  height: 20px;
  font-size: 14px;
  min-width: 220px;
  background-color: var(--off-white);
  height: 42px;
  padding-left: 15px;
}

.search-bx button {
  outline: none;
  border: none;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-right: 10px;
  color: var(--text-color);
  background: transparent;
}

header {
  background-color: white;
  transition: 0.3s ease-in-out;
  position: relative;
}

header.stricky-fixed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  top: -68px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  animation-name: fadeInDown;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

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

  to {
    transform: none;
  }
}

header.stricky-fixed .col-1.mobile_hide {
  display: none;
}

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

.menubar .read-mr{
  padding: 11px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--pri);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 3px;
  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: #fff;
  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;
  display: block;
}

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

.navigation .menu ul li a {
  padding: 13px 9px;
  display: block;
  color: var(--white);
  transition: all 0.2s ease;
  font-size: 15px;
  background: transparent;
  font-weight: 500;
  /* text-transform: uppercase; */
}

.navigation .menu>ul>li.active>a,
.navigation .menu>ul>li:hover>a {
   
}

.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: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  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: max-content;
}

.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 a:hover {
  color: white;
  background-color: var(--pri);
}

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

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

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

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--text-color);
  font-size: 14px;
  padding: 7px 13px;
  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(--text-color);
}

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

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

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.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: #fff;
}

.navigation .navbar {
  display: none;
  padding: 12px 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: 390px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

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

/* ################### main ###################### */

 .carousel img {
  aspect-ratio: 1920 / 780;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
  object-fit: cover;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 52%;
  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.2);
  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: 15px;
    width: 15px;
  }

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

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

.swiper_wrap {
  position: relative;
}

.cate-next,
.cate-prev {
  width: 45px;
  height: 45px;
  background-color: #fdfff8;
  border: 1px solid var(--border-color);
  border-radius: 100%;
  color: var(--para-color);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 25px;
  height: 25px;
}

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

.lead-sure-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-pri {
  background-color: var(--sec) !important;
  align-content: center;
  color: var(--off-white);
}

.bg-liner {
  background: var(--liner);
  background-color: var(--pri);
}

.bg-pri .content-sec h1,
.bg-pri .content-sec h2,
.bg-pri .content-sec h3,
.bg-pri .content-sec h4,
.bg-pri .content-sec h5,
.bg-pri .content-sec h6 {
  color: var(--white);
}

.bg-pri .content-sec p,
.bg-pri .content-sec ul li {
  color: var(--off-white);
}

.bg-light {
  background-color: var(--off-white) !important;
}

.bg-gradiant {
  background-image: url(../images/bg/gradient-2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.text-pri {
  color: var(--pri) !important;
}

.counter-bx {
  text-align: center;
}

.counter-bx .tt {
  color: var(--text-color);
  font-weight: 800;
  margin-bottom: 10px;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font);
  line-height: 40px;
}

.read-mr {
  padding: 13px 20px;
  color: var(--pri);
  border: 1px solid var(--pri);
  background-color: transparent;
  display: inline-flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  text-transform: capitalize;
  cursor: pointer;
}

.read-mr:hover {
  color: var(--white);
  background-color: var(--pri);
}

.read-mr svg{
  height:16px;
    width: 16px;
}

.swiper-pagination {
  position: static;
  margin-top: 20px;
}

.swiper-pagination-bullet-active {
  background-color: var(--pri);
}

.testiSlider .swiper-slide {
  height: auto;
  margin-bottom: 10px;
}

.indust-bx {
  background-color: var(--sec);
  overflow: hidden;
  padding: 16px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}

.rating .star i::after {
  width: var(--w, 0%);
}

.indust-bx:hover {
  transform: translateY(-5px);
}

.indust-bx img {
  border-radius: 10px;
  width: 100%;
}

.indust-bx .tt {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
  color: var(--white);
}

.indust-bx p {
  margin-bottom: 0;
  color: var(--off-white);
}

/* 
.position-relative .swiper-pagination {
  position: absolute;
  bottom: -25px;
} */

.timeline-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 25px;
  left: calc(50% - 0px);
  bottom: 0;
  background-color: var(--pri);
}

.timeline-row {
  display: flex;
}

.timeline-row:nth-child(even) .timeline-img-bx {
  order: 1;
}

.timeline-row:nth-child(even) .timeline-tx-bx {
  order: 0;
}

.timeline-row .timeline-img-bx,
.timeline-row .timeline-tx-bx {
  width: 50%;
  padding: 40px 50px;
}

.timeline-row .timeline-tx-bx {
  position: relative;
  align-content: center;
}

.timeline-row .timeline-tx-bx .tt {
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 10px;
}

.timeline-row .timeline-tx-bx p {
  margin-bottom: 0;
  text-align: justify;
}

.timeline-row .timeline-tx-bx .years {
  position: absolute;
  top: 0;
  left: 30px;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: var(--pri);
  color: white;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years {
  right: 30px;
  left: auto;
}

.timeline-row .timeline-tx-bx .years::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -30px;
  width: 100%;
  height: 2px;
  background: var(--pri);
  z-index: -1;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years::before {
  right: -30px;
  left: auto;
}

.timeline-row .timeline-tx-bx .years::after {
  content: "";
  left: -38px;
  top: 13px;
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--pri);
  border-radius: 100%;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years::after {
  right: -38px;
  left: auto;
}

.mobile_nav {
  display: none;
}

.certificate-bx {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  transition: 0.2s ease-in-out;
}

.certificate-bx:hover {
  transform: scale(1.02);
}

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

.certificate-bx .img-bx img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.certificate-bx .tt {
  background-color: var(--off-white);
  padding: 10px;
  line-height: 1;
  align-content: center;
  color: var(--text-color);
  font-family: var(--font);
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.certificate-bx .tt svg {
  margin-right: 3px;
}

.cat-nav-img {
  background-image: url(../images/cat-cta.webp);
  padding: 30px 25px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.cat-nav-img .tt {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font);
}

.cat-nav-img p {
  color: var(--off-white);
  line-height: 1.3;
}

.cat-nav-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  opacity: 0.8;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.call-bx {
  background-color: var(--off-white);
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
}

.call-bx .icon svg {
  width: 45px;
  height: 45px;
  color: var(--pri);
}

.call-bx .tx-bx p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--para-color);
  line-height: 1;
}

.call-bx .tx-bx .tt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
}

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

.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: 23px;
}

.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: 15px;
  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;
}

.content-sec table {
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.content-sec table strong,
.content-sec table b {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #aaa;
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

th {
  color: var(--text-color);
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-bx img {
  aspect-ratio: 25 / 14;
  object-fit: contain;
  border-radius: 1px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-block: 3px;
}

.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 10px;
}

.custom-from-row .form-control {
  border-radius: 5px;
  height: 42px;
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  box-shadow: none !important;
}

.custom-from-row textarea {
  padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
  height: 42px;
}

.custom-from-row .main-btn {
  padding-block: 14px;
  font-size: 15px;
}

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

.abt-sec2 {
  position: relative;
}

.about img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  object-fit: cover;
}

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

 
.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  object-fit: cover;
transition: all .2s ease-in-out;
}
.cate-img img:hover {
 box-shadow: 0 1px 4px rgba(0, 0, 0,.3);
}

.table-of-con {
  padding: 20px;
  background: var(--off-white);
  margin-bottom: 20px;
  border-radius: 10px;
}

.table-of-con .title {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: var(--font);
}

.table-of-con ul {
  padding-left: 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.table-of-con ul li {
  padding: 2px 0;
  color: var(--para-color);
  font-weight: 400;
  cursor: pointer;
}

.table-of-con ul li:hover {
  text-decoration: underline;
}

.glow {
  transform-origin: center;
  animation: glowEffect 1s ease-in-out;
  animation-delay: 600ms;
}

@keyframes glowEffect {
  0% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }

  50% {
    background-color: rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  }

  100% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
}

.blog-sec h1,
.blog-sec h2,
.blog-sec h3,
.blog-sec h4,
.blog-sec h5,
.blog-sec h6 {
  scroll-margin-top: 90px;
}

.nav-cate-style.nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 15px;
  padding: 9px 12px;
  border-radius: 19px;
  font-family: var(--font);
  font-weight: 500;
}

.nav-cate-style.nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}

.faq-sec .nav-pills .nav-link {
  background-color: var(--off-white);
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  border: 1px solid var(--sec);
  border-left: 3px solid var(--pri);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font);
  font-weight: 500;
  font-size: 17px;
  border-radius: 6px;
}

.faq-sec .nav-pills .nav-link:hover {
  color: var(--pri);
}

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

.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;
}

.business-enq {
  position: fixed;
  bottom: 75px;
  left: 20px;
  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;
  font-weight: 400;
}

.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(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  left: 20px;
  bottom: 130px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.error {
  font-size: 15px;
  color: red;
}

.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* border-bottom: 1px solid #e3e3e3; */
  background: var(--off-white);
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-header.modal-header2 .main-tt {
  color: white;
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
}

.modal-header.modal-header2 .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 13px 18px 20px;
  background: var(--off-white);
}

.modal-content .main-tt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1 / 1;
}

.pop-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

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

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

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

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

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

.content-sec p a {
  color: var(--pri);
}

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

.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 a {
  margin-right: 15px;
  font-weight: 300;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--sec);
  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;
}

footer {
  overflow: hidden;
  padding: 45px 0 15px;
  position: relative;
  z-index: 1;
  background-color: var(--bg);
box-shadow: 0 -6px 6px rgba(0, 0, 0, 0.10);
}

.ft-bx {
  position: relative;
  z-index: 1;
}

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

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

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0px;
}

.offcanvas-body .ft-bx .con-bx a,
.offcanvas-body .ft-bx .con-bx p {
  color: var(--para-color);
}

.ft-bx .con-bx a:hover {
  color: var(--pri);
  opacity: 1;
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  color: var(--pri);
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
}

.ft-bx p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8) !important;
  padding: 3px 0;
  transition: 0.1s;
  display: inline-block;
  font-weight: 500;
  cursor: pointer;
}

.ft-bx ul li a:hover {
  color: var(--pri) !important;
  opacity: 1;
}

.ft-bx ul.social {
  display: flex;
  gap: 5px;
  justify-content: start;
  background-color: transparent;
}

.ft-bx ul.social li a {
  background-color: var(--white);
  width: 38px;
  height: 38px;
  color: var(--pri);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  opacity: 1;
}

.ft-bx ul.social li a:hover,
.offcanvas-body .ft-bx ul.social li a {
  background-color: var(--pri);
  color: white;
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--sec);
}

.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%;
  border-radius: 15px;
}

.copyright {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

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

.copyright p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
}

.copyright p a {
  color: rgba(0, 0, 0, 0.6);
  display: inline;
  font-weight: 600;
}

.copyright p a:hover {
  color: var(--pri);
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.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(--font2);
  color: var(--text-color);
  font-weight: 400;
}

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

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

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

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

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

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

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: var(--off-white);
  color: var(--text-color);
  font-size: 15px;
  transition: 0.2s ease-in-out;
  border-radius: 6px;
}

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

.expend-content-sec {
  max-height: 460px;

  overflow: hidden;
}

.abt-content {
  max-height: 278px;
}

.expend-content-sec.expanded {
  /* max-height: 10000px !important; */
  overflow-y: auto;
  padding-right: 10px;
}

.expend-content-sec.expanded.category {
  max-height: 10000px !important;
  overflow: unset;
  padding: 0;
}

.expend-content-sec.expanded::-webkit-scrollbar {
  width: 5px;
}

.expend-content-sec.expanded::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.read-toggle {
  display: inline-block;
  color: currentColor;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
  font-size: 0.9em;
}

.read-toggle:hover {
  opacity: 0.8;
}

.abt-vid-bx,
.reels-vid {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.abt-vid-bx iframe,
.reels-vid iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  overflow: hidden;
  transform: scale(1.02);
  transform-origin: 50% 50%;
}

.reels-vid iframe {
  aspect-ratio: 35 / 62;
}

.youtube-player .youtube-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16 / 9 !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.youtube-player .play {
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  position: absolute;
  background: url(../images/icon/play-1.png) no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  /* animation: 1.25s cubic-bezier(.66, 0, 0, 1) infinite pulse; */
  transition: 0.3s ease;
}

.youtube-player:hover .play {
  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);
  }
}

.youtube-player .tt {
  font-size: 16px;
  margin-top: 10px;
  color: var(--text-color);
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
}

.youtube-player img {
  width: 100%;
}

.scroll-top-wrapper {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}

.scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-color);
  text-shadow: 1px 1px 3px white;
  font-family: var(--font);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.scroll-line {
  width: 2px;
  height: 80px;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

.scroll-progress {
  width: 100%;
  height: 0%;
  background: var(--pri);
  position: absolute;
  bottom: 0;
  transition: height 0.2s ease;
}

.scroll-top-wrapper {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-top-wrapper.show {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------Alok-CSS----------------- */

.sub-ttl {
  color: var(--pri);
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 5px;
  display: inline-block;
}

.sub-ttl.black {
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
}

.title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
}

.title.white {
  color: var(--white);
}

.abt-sec .img-bx {
  width: 100%;
  /* padding-right: 80px; */
  overflow: hidden;
  position: relative;
}

.abt-sec .img-bx img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
}
 

.tt {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.desp .tt {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}

.desp .tt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='currentColor'/%3E%3C/svg%3E");
}

.product {
  position: relative;
  z-index: 1;
  /* background-color: var(--black); */
}

.product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/services-title-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  z-index: -1;
}

.sub-ttl.bgWhite {
  background: var(--off-white);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 8px;
   font-size: 15px;
}

.product-swiper {
  width: 100%;
}

 .product .bx {
  font-size: 18px;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
  background-color: var(--off-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


 .product .bx .img-bx{
  overflow: hidden;

 }

.product .bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

 .product .bx:hover img {
  transform: scale(1.1);
  filter: brightness(0.85) contrast(1.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

 
 
.product .bx .cont-bx {
  padding: 15px 15px;
  /* padding-bottom: 20px; */
  
 
  
  
}

.product .bx .cont-bx .read-mr{
 padding: 0;
 border: none;
}

.product .bx .cont-bx .read-mr:hover{
  color: var(--sec);
  background-color: transparent;
}

 .product .bx .sub-ttl.black {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  font-size: 18px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.jsmarquee-sec {
  width: 100%;
  color: #fff;
  overflow: hidden;
  background-image: url("../images/back-Image.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 10px !important;
}

.jsmarquee-sec::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #154c987e;
  top: 0;
  left: 0;
  z-index: -1;
}

.js-marquee-wrapper {
  display: flex;
  width: 100%;
}

.jsmarquee-list {
  display: flex;
  gap: 60px;
}

.jsmarquee-list a,
.jsmarquee-list span {
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 17px;
  color: white;
  white-space: nowrap;
  position: relative;
  line-height: 1;
}

.jsmarquee-list a:hover {
  color: var(--pri);
}

.jsmarquee-list a::before,
.jsmarquee-list span::before {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
  background-color: var(--white);
}

.why-us {
  background-color: var(--bg);
}

.nav {
  gap: 10px;
}

.nav-pills .nav-link {
 
  
  font-size: 14px;
 
}

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

.why-us .tab-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.why-us .tab-content ul li {
  position: relative;
  padding-left: 32px;
  color: var(--black);
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 10px;
}

.why-us .tab-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
 
  width: 20px;
  height: 20px;
  background-color: var(--pri);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5l10 -10'/%3E%3C/svg%3E");
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 12px;
  background: #fff;
  border: 1.5px solid var(--border-color) !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-radius: 6px !important;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  border-radius: 0 !important;
  background: #fff;
  font-weight: 600;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 17px;
  padding: 16px 50px 16px 20px;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
}

.accordion-button:not(.collapsed) {
  background: var(--pri);
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(0deg);
}

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

 

  .blog-sec .bx {
    border-radius: 12px;
    overflow: hidden;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;

      border: 1px solid rgba(0, 0, 0, 0.15);
  }

  .blog-sec .bx .sub-ttl.black{
        display: -webkit-box;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      overflow: hidden;
  }

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

  .blog-sec .sub-ttl.black{

  }

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

  .blog-sec .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-sec .img-bx::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35)); */
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .blog-sec .bx:hover {
    
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  }

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

  .blog-sec .bx:hover .img-bx::after {
    opacity: 1;
  }

  .blog-sec .cont-bx {
         padding: 15px 22px;
    background-color: var(--white);
  }

  .blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  gap: 1.5rem;
}

.blog-card__date svg,
.prof svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pri);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.blog-card__meta .prof,
.blog-card__meta .blog-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ceo-sec .img-bx {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 80px 30px 80px 30px;
}

.ceo-sec p {
  text-align: justify;
}

.ceo-sec .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .img-breadcum {
  padding: 0;
  position: relative;
  z-index: 1;
  background: url("../images/breadcrum-bnr.webp") no-repeat center center;
  background-size: cover;
}

.img-breadcum .head-sec {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 40px;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  max-width: unset;
}

.img-breadcum .head-sec>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.img-breadcum .head-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  z-index: 1;
  pointer-events: none;
}

.img-breadcum .box {
  position: relative;
  z-index: 2;
  text-align: left;
}

.img-breadcum .sub-ttl {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 6px;
  line-height: 1.2;
}



.breadcum-sec {
  position: relative;
  z-index: 2;
  text-align: left;
}

.breadcum-sec ul {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
  justify-content: center;
}

.breadcum-sec ul li {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.breadcum-sec ul li::after {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255)' stroke-width='2.5'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.breadcum-sec ul li:last-child::after {
  display: none;
}

.breadcum-sec ul li a {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

 
 



.pb-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border-radius: 10px;
  animation: pb-slideUp 0.5s ease both;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}



/* .pb-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 100px at var(--mx, 50%) var(--my, 50%),
    rgba(57, 49, 133, 0.18) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 10;
  border-radius: 10px;
}

.pb-box:hover::before {
  opacity: 1;
} */

.pb-img {
  height: 70px;
  width: 70px;
  min-width: 80px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
}

.pb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain ;
  display: block;
  transition: transform 0.42s ease;
}

.pb-box:hover .pb-img img {
  transform: scale(1.06);
}

.pb-cont {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 70px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: background 0.25s;
}

.pb-box:hover .pb-cont {
  background: #fdf9f7;
}

.pb-product {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  transition: color 0.22s;
  text-decoration: none;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-box:hover .pb-product {
  color: var(--pri);
}

.pb-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition:
    color 0.22s,
    gap 0.22s;
}

.pb-box:hover .pb-link {
  color: var(--pri);
  gap: 8px;
}

.pb-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.pb-box:hover .pb-link svg {
  transform: translateX(3px);
}

@keyframes pb-slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cat-nav-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  background-image: url("../images/pumps.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
}

.cat-nav-img .tt {
  font-family: var(--font);
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cat-nav-img p {
  color: var(--off-white);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.cat-nav-img .cni-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 59, 110, 0.18);
  border: 1px solid var(--third);
  border-radius: 20px;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 4px;
}

.cat-nav-img .cni-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.cat-nav-img .cni-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pri);
  animation: cni-pulse 1.8s ease infinite;
  flex-shrink: 0;
}

.cat-nav-img .cni-phone {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cat-nav-img .cni-phone svg {
  color: var(--pri);
  flex-shrink: 0;
}

.cat-nav-img .cni-btns {
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
  gap: 7px;
}

.cat-nav-img .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.18s;
}

.cat-nav-img .main-btn:hover {
  transform: translateY(-2px);
}

.cat-nav-img .main-btn svg {
  color: #25d366;
}

@keyframes cni-pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.cate-form {
  background-color: var(--bg);
  padding: 15px 20px;
  border-radius: 18px;
}

.btn-bx .main-btn,
.btn-bx .read-mr {
  font-size: 13px;
  padding: 12px 12px;
}

 

.gallery-bx {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* image container */
.gallery-bx .img-bx {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

/* dark overlay */
.gallery-bx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.45s ease;
}

/* shine animation */
.gallery-bx::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 250%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(20deg);
  z-index: 2;
  transition: 0.8s ease;
}

/* center icon */
.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 3;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  opacity: 0;
  transition: 0.4s ease;
}

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

/* title */
.gallery-bx .tt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 10%,
      rgba(0, 0, 0, 0) 70%);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0.9;
  transition: 0.45s ease;
}

/* hover effects */
.gallery-bx:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.gallery-bx:hover img {
  transform: scale(1.08);
  filter: blur(1.5px);
}

.gallery-bx:hover::before {
  opacity: 1;
}

.gallery-bx:hover::after {
  top: -20%;
  left: 120%;
}

.gallery-bx:hover .link-wrap {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-bx:hover .tt {
  opacity: 1;
}

.gallery-bx::before,
.gallery-bx::after,
.gallery-bx .link-wrap,
.gallery-bx .tt {
  pointer-events: none;
}

.blog-sec {
  
  background-color: var(--bg);
  overflow: hidden;
  border-radius: 6px;
}

.mini-blogs,
.qut-bx {
  background-color: var(--bg);
  padding: 18px;
  border: 1px solid var(--off-white);
  border-radius: 12px;
}

.mini-blogs .blog-bx.blog-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: opacity 0.25s ease;
}

.mini-blogs .blog-bx.blog-card:last-child {
  border-bottom: none;
}

.blog-bx.blog-card .img-bx {
  flex-shrink: 0;
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-bx .img-bx img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  transition: transform 0.5s ease;
}

.mini-blogs .blog-bx.blog-card:hover .img-bx img {
  transform: scale(1.08);
}

.mini-blogs .tt {
  color: var(--pri);
}

.blog-bx.blog-card .tx-bx .tt a {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 4px;
}

.blog-bx.blog-card .tx-bx p {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all .2s ease-in-out;

}

.form-sec {
  background-color: var(--bg);
  
  
}

.form:hover{
  box-shadow: 0 1px 4px rgba(0, 0, 0,.3);

}


.seo-bx {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-radius: 6px;
}

.seo-bx h1,
.seo-bx h2,
.seo-bx h3,
.seo-bx h4,
.seo-bx h5 {


  color: var(--white);

}

.seo-bx p {

  color: var(--white);


}

.seo-bx ul li {
  color: var(--white);
}

.seo-bx ol li {
  color: var(--white);
}



.parent {
  background: linear-gradient(135deg, #393185, #1a1a2e);
  padding: 30px;
}

.seo-bx .expend-content-sec {
  max-height: 447px;

}

.seo-bx .expend-content-sec::-webkit-scrollbar {
  width: 4px;/
}


.seo-bx .expend-content-sec::-webkit-scrollbar-thumb {
  background-color: var(--sec);
  border-radius: 10px;
}



.seo-bx .expend-content-sec::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.seo-bx .read-toggle {
  color: #ffffffb9;
}

.contact-bx .title {
  font-size: 28px;
}

.compny-name {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
}


.second-comp-name {
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: inline;
}

.form-sec iframe {
  border: 1px solid var(--off-white);
  box-shadow:  0 1px 4px rgba(0, 0, 0, 0.2);
}

.faq-sec .img-bx img{
  aspect-ratio: 1/1;
  object-fit: cover;
}

 .lead-sure-section.why-us {
  position: relative;
  overflow: hidden;
}

 
/* ======== IMAGE ======== */
.img-frame {
  position: relative;
}

 

.why-us .nav-link {
  
   background-color: var(--black);
  
  position: relative;
  color: var(--white);
  transition: all .3s ease-in-out;
 
}

 

 .why-us .nav-link.active {
    
    color: var(--white);
    background-color: var(--pri);
   
    
}

 
/* ======== TAB ======== */
.why-us .tab-pane {
  color: var(--pri);
}

 .why-us .img-bx{
  aspect-ratio: 1/1;
  overflow: hidden; 
  border-radius: 12px;
 }

 .why-us .img-bx img{
  object-fit: cover;
 }
 
 /* ── Swiper outer wrapper ── */
.swiper-outer {
  width: 100%;
  overflow: hidden;
  /* padding: 1.5rem 0; */
  position: relative;
}

 .swiper {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.swiper .swiper-slide {
   
  box-sizing: border-box;
  padding: 0;
}

.testi .bx {
  background: var(--white);
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.testi .bx::after {
  content: '';
  position: absolute;
      bottom: 19px;
    right: 18px;
    height: 50px;
    width: 50px;
    opacity: .2;
  background: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'24\' height=\'24\' viewBox=\'0 0 24 24\' fill=\'currentColor\'%3E%3Cpath stroke=\'none\' d=\'M0 0h24v24H0z\' fill=\'none\'/%3E%3Cpath d=\'M9 5a2 2 0 0 1 2 2v6c0 3.13-1.65 5.193-4.757 5.97a1 1 0 1 1-.486-1.94c2.227-.557 3.243-1.827 3.243-4.03v-1h-3a2 2 0 0 1-1.995-1.85l-.005-.15v-3a2 2 0 0 1 2-2z\'/%3E%3Cpath d=\'M18 5a2 2 0 0 1 2 2v6c0 3.13-1.65 5.193-4.757 5.97a1 1 0 1 1-.486-1.94c2.227-.557 3.243-1.827 3.243-4.03v-1h-3a2 2 0 0 1-1.995-1.85l-.005-.15v-3a2 2 0 0 1 2-2z\'/%3E%3C/svg%3E') no-repeat center center;
  background-size: contain;
  
}
 
.testi .bx .sub-ttl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #185fa5;
  margin-bottom: 10px;
}

.testi .bx .profile-bx {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi .bx .profile-bx .icon-bx {
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.testi .bx .profile-bx .icon-bx .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f1fb;
  color: var(--pri);
  font-weight: 500;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi .bx .profile-bx .content-bx .title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 2px;
}

.testi .bx .profile-bx .content-bx span {
  font-size: 15px;
  color: #888;
}

.swiper .dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}

.swiper .dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.swiper .dots .dot.active {
  background: #185fa5;
  transform: scale(1.2);
}

.swiper .nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  pointer-events: none;
}

.swiper .nav .nav-btn {
  pointer-events: all;
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: background 0.15s;
  z-index: 2;
}

.swiper .nav .nav-btn:hover {
  background: #f5f5f5;
}

.swiper .nav .nav-btn:first-child {
  margin-left: -8px;
}

.swiper .nav .nav-btn:last-child {
  margin-right: -8px;
}

 
 .abt-sec .bx {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sec);
  padding: 50px 10px;
  justify-content: center;
  border-radius: 12px;
}

.abt-sec .bx .odometer {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.abt-sec .bx .plus-sign {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  align-self: flex-start;
  margin-top: 11px;
}

.abt-sec .bx .cont {
  font-size: 15px;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.5;
  border-left: 2px solid var(--white);
  padding-left: 10px;
}

.logo-hide {
    display: none;
}
 
 
 
.r-side img{
    width: 80px;
    object-fit: contain;
    height: 50px;
    aspect-ratio: 16 / 9;
}

    /* ── Swiper ── */
    .showcase {
      width: 100%;
      overflow: hidden;
    }

    .swiper-wrapper {
      align-items: flex-start;
    }

   .showcase .swiper-wrapper .swiper-slide {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      /* height: 470px; */
      width: 100%;
      aspect-ratio:4/5;
    }

    .showcase .swiper-wrapper .swiper-slide:nth-child(even) {
      /* margin-top: 30px; */
    }

    .card-inner {
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      overflow: hidden;
    }

     
    .card-front {
      position: absolute;
      inset: 0;
       
      overflow: hidden;
    }

    .card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.82);
      transition: transform 0.5s ease;
       
    }

    .swiper-slide:hover .card-front img {
      transform: scale(1.05);
    }

   
    .card-back {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: #fff;
      z-index: 4;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      transform-origin: bottom center;
      transform: rotateX(-90deg);
      opacity: 0;
      border-radius: 6px;
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    }

    .swiper-slide:hover .card-back {
      transform: rotateX(0deg);
      opacity: 1;
    }

    .back-img {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .back-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.07;
      filter: grayscale(1);
    }

    .back-content {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .back-cross {
      flex-shrink: 0;
      width: 62px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 1px solid rgba(0, 0, 0, 0.09);
    }

    .back-cross::before,
    .back-cross::after {
      content: '';
      position: absolute;
      background: var(--red);
    }

    .back-cross::before {
      width: 2px;
      height: 22px;
    }

    .back-cross::after {
      width: 22px;
      height: 2px;
    }

    .back-text {
       padding: 12px 18px;
    }

    .back-title {
      font-size: 20px;
      font-weight: 500;
      text-transform: uppercase;
      color: #111;
      margin-bottom: 7px;
    }

    .back-line {
      width: 28px;
      height: 2px;
      background: var(--red);
      margin-bottom: 7px;
    }

    .back-sub {
      font-size: 15px;
      color: #888;
      letter-spacing: 0.02em;
    }

    /* ── Controls ── */
    .controls {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 8px;
      width: 100%;
      justify-content: end;
      position: relative;
      bottom: 61px;
      right: 82px;
    }

    .nav-buttons {
      display: flex;
      gap: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      position: static !important;
      width: 44px !important;
      height: 44px !important;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      margin: 0;
      color: var(--text) !important;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

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

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--pri);
      border-color: var(--pri);
      color: #fff !important;
      transform: scale(1.08);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 14px !important;
      font-weight: 700;
    }

    .swiper-button-disabled {
      opacity: 0.3 !important;
    }

    .swiper-slide{
      transition: all .3s ease-in-out
    }

    @media (max-width: 768px) {
       
      .showcase .swiper-wrapper .swiper-slide {
        height: 280px;
      }
      .showcase .swiper-wrapper .swiper-slide:nth-child(even) {
        margin-top: 0px;
      }
    }

    .showcase-sec{
      /* background-color: var(--bg); */
    }

   

    .brand-logo .bx{
       max-height: 125px;
       max-width: 125px;
      overflow: hidden;
      border-radius: 50%;
    }

     .brand-logo .main-bx{
      display: flex;
      gap: 10px;
     }
     .top-bar .r-side a{
        color: var(--black);
        font-size: 14px;
     }

      

     .top-bar .icon-bx{
        margin-right: 5px;
     }

     .top-bar .icon-bx svg{
        width: 40px;
        height: 40px;
        color: var(--pri);
        padding: 6px;
        border: 3px solid var(--pri);
        border-radius: 100%;
        line-height: 1;
        display: block;
     }

     .top-bar span{
      font-size: 14px;
      font-weight: 400;
     }

     .top-bar p{
      font-size: 15px;
      font-weight: 700;
     }

     .search-bx input {
    height: 36px;
    outline: none;
    background: transparent;
    padding: 0;
    padding-left: 15px;
    font-size: 15px;
    color: var(--text-color);
    border: 0;
    width: -webkit-fill-available;
    
}


.search-bx button {
    white-space: nowrap;
    background: var(--pri);
    color: white !important;
    border-radius: 4px;
        padding: 8px 10px;
    font-size: 14px;
    align-content: center;
    text-align: center;
    border: 0;
    outline: 0;
    margin-right: 9px;
    transition: 0.2s ease;
    line-height: 1;
}

.search-bx {
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: max-content;
}
/* 
.expend-content-sec3 p {
  color: black;
} */

.owner{
  color: var(--black);
  font-size: 17px;
    font-weight: 500;
}

.owner1{
  padding-right: 16px;
  position: relative;
  /* border-right: 1px solid black; */
}

.owner1::after{
    position: absolute;
    content: "";
    height: 45px;
    width: 1px;
    background-color: black;
    right: 0;
    bottom: 0;
}

.ls-thankyou-modal .ls-thankyou-modal-content {
  background-color: var(--pri);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.ls-thankyou-modal .ls-thankyou-modal-header {
  border-bottom: none;
  padding: 16px 16px 0;
  justify-content: flex-end;
  background: unset;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.6;
  box-shadow: none;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close:hover {
  opacity: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 40px 16px;
  position: relative;
  z-index: 1;
  background-color: unset;
}

.ls-thankyou-modal .ls-thankyou-modal-footer {
  border-top: none;
  justify-content: center;
  padding: 8px 40px 40px;
  position: relative;
  z-index: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-content::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -5px;
  width: 150px;
  height: 150px;
  background-image: url("../images/svgs/baby-svgrepo-com.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-modal-content::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 5px;
  width: 90px;
  height: 90px;
  background-image: url("../images/svgs/baby-cartoon-child-svgrepo-com\ \(1\).svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.ls-thankyou-modal .ls-thankyou-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

.ls-thankyou-modal .ls-thankyou-btn-home {
  padding: 11px 36px;
  background-color: #ffffff;
  color: var(--pri);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ls-thankyou-modal .ls-thankyou-btn-home:hover {
  opacity: 0.88;
  color: var(--pri);
}

.modal .tt {
  color: var(--white);
  font-size: 19px;
}

.search-sec .bx{
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  background-color: var(--off-white);
  border: 1px dotted var(--pri);
}

.search-sec .bx .img-bx img{
  aspect-ratio: 1/1;
  border-radius: 12px;

}

.search-sec .bx .cont-sec{
  margin-top: 10px;
}

.name{
  margin-top: 10px;
  font-size: 22px;
  color: var(--black);
  font-weight: 700;
  text-align: center;
}

.product-img img{
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  
}

.btn-bx.btn-bx2 .main-btn, .btn-bx.btn-bx2 .read-mr {
    font-size: 13px;
    padding: 10px 8px;
    width: 48%;
    flex-wrap: wrap;
    
}

.category table{
  width: max-content;
}

.product-name{
   color: var(--black);
    font-size: 18px;
    transition: all .3s ease-in-out;
        display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
}

 .cate .contant-bx{
  background-color: var(--off-white);
  padding: 15px;
 }

 .cate .bx{
  overflow: hidden;
  border-radius: var(--radius);
      border: 1px solid rgb(235, 234, 234);
      transition:  all .3s ease-in-out;
 }

 .cate .bx:hover{
  box-shadow: 0 .5px 4px rgba(0, 0, 0, .3);
 }

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

 .product-det .bx{
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 15px;
  border-radius: 12px;
  transition: all .2s ease-in-out;
  
 }

 .product-det .bx:hover{
    box-shadow: 0 1px 4px rgba(0, 0, 0,.3);
 }

 .product-det .bx .sub-ttl{
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: 5px;
 }

  .product-det .bx img{
    border-radius: 12px;
  }

  .about .cont-sec, .abt-sec2{
        padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    overflow: hidden;
    background: #f5f5f5;
  }

  .js-readmore {
  max-height: 362px;  
  overflow: hidden;
  padding-right: 10px;    
  box-sizing: content-box;
}

.rm-toggle {
  display: inline-block;
  margin-top: 10px;
  color: #0d6efd;
  cursor: pointer;
}

.js-readmore::-webkit-scrollbar {
  width: 5px;  
}

.js-readmore::-webkit-scrollbar-track {
  background: transparent;
}

.js-readmore::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.js-readmore::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.clearfiX::after {
    display: block;
    clear: both;
    content: "";
}

 .liveSearchResult {
                      display: none;
                      position: absolute;
                      top: 105%;
                      left: 0;
                      right: 0;
                      background: #fff;
                      z-index: 99999;
                      border: 1px solid #eee;
                      border-radius: 10px;
                      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
                      max-height: 380px;
                      overflow-y: auto;
                      padding: 6px;
                      min-width: 320px;
                    }

.live-search-item {
                      display: flex;
                      align-items: center;
                      gap: 10px;
                      padding: 10px;
                      text-decoration: none;
                      color: #222;
                      border-radius: 8px;
                      transition: 0.2s ease;
                    }

 .live-search-item:hover {
                      background: #f5f5f5;
                    }

 .live-search-item img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      background: #f7f7f7;
      border-radius: 6px;
      border: 1px solid #eee;
                    }

 .live-search-title {
       font-size: 14px;
       font-weight: 600;
       line-height: 1.3;
                    }
  .live-search-type {
     display: inline-block;
     margin-top: 4px;
     font-size: 11px;
     padding: 3px 7px;
     border-radius: 6px;
     background: var(--bg);
     color: var(--black);
    }

 .live-search-empty {
       padding: 12px;
      font-size: 14px;
      color: #777;
    }

 .live-search-view-all {
     display: block;
     text-align: center;
     padding: 10px;
     margin-top: 5px;
     font-size: 13px;
     font-weight: 600;
     color: #111;
     text-decoration: none;
     border-top: 1px solid #eee;
  }
  

  .search-sec .sub-ttl{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }