/* ==========================================================
   DESIGN TOKENS
   Navy/steel palette with a brass accent, pipe-ring motif
   ========================================================== */
:root{
  --navy: #1b199d;
  --navy-deep: #0300a7;
  --steel: #144272;
  --steel-light: #2C74B3;
  --brass: #228ff4;
  --brass-light: #47a6ff;
  --bg-light: #F4F6F8;
  --bg-alt: #EDF1F4;
  --text-color: #303849;
  --ink: #0F1E2C;
  --gray-text: #55636F;
  --line: #E1E6EA;
  --radius: 10px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
   --border-color: #ececec;
  --white: #fff;
  --black: #111;
    --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
}

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

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

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

p {
  color: var( --ink);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font-body);
  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 {
  font-size: 16px;
  font-weight: 400;
  color: var(--nano);
  align-content: center;
  font-family: var(--font);
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  display: inline-block;
  letter-spacing: 0.4px;
}

.head-sec .sub-tt::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  width: 25px;
  height: 1px;
  border-bottom: 1px solid var(--navy);
}

.head-sec .tt {
  font-family: var(--font-display);
  color: var(--text-color);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

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

.head-sec p {
  font-size: 15px;
  color: var( --ink);
  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: 11px 15px;
  border-radius: 4px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  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: 14px 20px;
  color: var(--white);
  border: 1px solid var(--navy);
  background-color: var(--navy);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  /* text-transform: uppercase; */
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 0;
  line-height: 1;
   border-radius:6px
}

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

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

.main-btn2 {
  color: var(--white);
    background: var(--brass);
    border-color: var(--brass);
   border-radius:6px
}

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

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

.social li a {
  width: 20px;
  height: 20px;
  color: var(--white);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  transition: 0.2s ease-in-out;
}

.social li a svg {
  width: 14px;
  height: 14px;
  color: currentColor;
}

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

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

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 400;
  border-radius: 5px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font-body);
  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: 180px;
  width: auto;
  height: auto;
}

.menubar{
  position: relative;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--white);
}

header{
      position: fixed;
    z-index: 299;
    width: 100%;
    top: 0;
}

header.stricky-fixed .menubar{
  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: 600ms;
  animation-fill-mode: both;
}
header.stricky-fixed .menubar .logo {max-width: 140px !important;}
.trust-strip{background:var(--bg-alt);padding:22px 0;border-bottom:1px solid var(--line);}
.trust-strip .col-6, .trust-strip .col-md-3{display:flex;flex-direction:column;align-items:center;gap:6px;}
.trust-strip i{font-size:1.5rem;color:var(--steel-light);}
.trust-strip span{font-size:1rem;font-weight:700;color:var(--navy);}
/* 1. Dynamic Square Container - Adapts to parent width */
.cate-img-container {
    position: relative;
    width: 100%;             /* Fills the column width */
    max-width: 600px;        /* Limits maximum size */
    aspect-ratio: 1 / 1;     /* MAGIC: Keeps it a perfect square automatically */
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f8f8f8; /* Placeholder color while image loads */
}

/* 2. Responsive Image */
.cate-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Ensures image fills square without stretching */
    display: block;
}

/* 3. The Dynamic Watermark Overlay */
.watermark-overlay {
    position: absolute;
    top: -50%; 
    left: -50%;
    width: 200%; 
    height: 200%;
    display: grid;
    /* This automatically creates as many columns as needed based on size */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
    transform: rotate(-45deg); 
    pointer-events: none; 
    user-select: none; 
    z-index: 10;
}

/* 4. Styling for the watermark text */
.watermark-text {
    color: rgba(255, 255, 255, 0.3); /* Adjusted for better visibility */
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}




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

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

.top-bar {
  background-color: var(--navy-deep);
  padding: 10px 0;
}

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

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

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

.top-bar svg {
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

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

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--steel);
  border: 0;
  outline: 0;
  color: #fff;
  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: #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: 22px 14px;
  display: block;
  color: var(--ink);
  transition: all 0.2s ease;
  font-size: 15px;
  font-family: var(--font-body);
  background: transparent;
  font-weight: 500;
}

.navigation .menu > ul > li:hover > a,
.navigation .menu > ul > li.active > a {
  color: var(--steel) !important;
}

/* --- GAP FIX: Invisible bridge below the main menu item --- */
.navigation .menu ul li.ls-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

/* Main Dropdown - Flush with 0 gap */
.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  text-align: left;
  min-width: 240px;
  width: max-content;
  max-width: 320px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin: 0;
  padding: 0;
}

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

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

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

/* --- GAP FIX: Side Flyout Dropdowns seamlessly aligned with 0px gap --- */
.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown,
.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  top: 0;
  left: 100%;
  margin-top: 0; /* Removed negative margin jump */
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
}

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

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

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

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

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

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

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

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

.navigation ul li.ls-submenu a button svg {
  width: 16px;
  height: 16px;
}

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

.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;
}
/* ################### main ###################### */


main  {
  margin:110px 0 0;
}

.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(--steel);
  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( --ink);
  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(--steel);
  color: var(--white);
}

.p-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;
  background-color: var(--steel) !important;
}

.bg-pri {
  background-color: var(--navy);
  align-content: center;
}

.bg-pri.content-sec h1,
.bg-pri.content-sec h2,
.bg-pri.content-sec h3,
.bg-pri.content-sec h4,
.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  color: white;
}

.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  opacity: 0.8;
}

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

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

.abt-sec {
  position: relative;
  padding-left: 40px;
}

.abt-sec .img1{
  border-left: 10px solid var(--steel);
}

.abt-sec .img1 img {
  width: 100%;
padding-left: 10px;
}

.experience-box {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 30px;
  left: 10px;
  background-color: var(--white);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0px 0px 13.5px 1.5px rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
  padding-right: 20px;
  gap: 15px;
}

.experience-box .left .counting {
  color: var(--steel);
  font-size: 50px;
  font-family: var(--font);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-box .left p {
  color: var(--text-color);
  margin-bottom: 0;
  font-weight: 600;
}

.experience-box .right {
  color: var(--steel);
  opacity: 0.2;
}


.read-mr {
  font-size: 0.9em;
  color: var(--steel);
  font-weight: 400;
  transition: 0.2s;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: 0;
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

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

.section{padding:80px 0;}
.section-alt{background:var(--bg-light);}
.section-navy{background:linear-gradient(160deg,var(--navy),var(--navy-deep));}
.section-eyebrow{
  font-family:var(--font-mono);color:var(--steel-light);text-transform:uppercase;
  letter-spacing:1.5px;font-size:.78rem;font-weight:600;margin-bottom:8px;
}
.section-eyebrow.light{color:var(--brass-light);}
.section-title{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:600;color:var(--navy);margin-bottom:18px;}
.section-title.text-white{color:#fff;}
.section-text{color:var(--gray-text);line-height:1.7;font-size:1rem;}

.check-list{list-style:none;padding:0;margin:22px 0;}
.check-list li{padding:7px 0;color:var(--ink);font-weight:500;}
.check-list i{color:var(--steel-light);margin-right:10px;}
.check-list.two-col{column-count:2;column-gap:24px;}
@media (max-width:576px){.check-list.two-col{column-count:1;}}
.cat-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 16px;text-align:center;height:100%;transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover{transform:translateY(-6px);box-shadow:0 14px 30px rgba(10,38,71,.12);border-color:var(--steel-light);}
.cat-icon{
  width:58px;height:58px;border-radius:50%;margin:0 auto 14px;
  background:var(--bg-alt);color:var(--steel);
  display:flex;align-items:center;justify-content:center;font-size:1.5rem;
}
.cat-card:hover .cat-icon{background:var(--navy);color:var(--white);}
.cat-card h6{font-family:var(--font-display);color:var(--navy);margin-bottom:8px;font-size:1rem;}
.cat-card p{font-size:.8rem;color:var(--gray-text);margin:0;line-height:1.5;}
.industry-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:24px 14px;text-align:center;height:100%;transition:box-shadow .25s ease;
}
.industry-card:hover{box-shadow:0 12px 24px rgba(10,38,71,.1);}
.industry-card i{font-size:1.8rem;color:var(--brass);margin-bottom:10px;display:block;}
.industry-card h6{font-family:var(--font-display);color:var(--navy);margin-bottom:6px;}
.industry-card p{font-size:.8rem;color:var(--gray-text);margin:0;}
.map-pins{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px; justify-content: center;}
.map-pins span{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);
  padding:6px 14px;border-radius:20px;font-size:.82rem;display:flex;align-items:center;gap:6px;
}
.map-pins i{color:var(--brass-light);}


.counters{
  background:var(--navy);color:#fff;padding:56px 0;
  background-image:radial-gradient(circle at 15% 50%, rgba(255,255,255,.05) 0, transparent 45%),
                    radial-gradient(circle at 85% 50%, rgba(255,255,255,.05) 0, transparent 45%);
}
.counter-num{font-family:var(--font-mono);font-size:2.4rem;font-weight:600;color:var(--white);}
.counter-label{font-size:.85rem;color:#C9D6E3;text-transform:uppercase;letter-spacing:.5px;margin-top:4px;}

.counters2{
    background:var(--navy);
    padding:70px 0;
}

.counter-box{
    text-align:center;
    color:#fff;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-icon{
    width:85px;
    height:85px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    border:2px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.counter-box:hover .counter-icon{
    background:#fff;
}

.counter-icon i{
    font-size:38px;
    color:#fff;
    transition:.35s;
}

.counter-box:hover .counter-icon i{
    color:#0f6db5;
}

.counter-num{
    font-size:48px;
    font-weight:700;
    line-height:1;
    margin-bottom:10px;
}

.counter-label{
    font-size:17px;
    font-weight:500;
    opacity:.95;
}

@media(max-width:767px){

    .counter-icon{
        width:70px;
        height:70px;
    }

    .counter-icon i{
        font-size:30px;
    }

    .counter-num{
        font-size:36px;
    }

    .counter-label{
        font-size:15px;
    }
}




.pr_slider .swiper-slide,
.faq_slider .swiper-slide {
  width: auto;
}
 .product-card{
    display:block;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    border-color:var(--brass);
}

.product-img{
    background:#fff; 
    overflow:hidden;
}

.product-img img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    transition:.5s;
}

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

.product-info{
    padding:18px 20px;
    border-top:1px solid #edf1f5;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    background:#fff;
}

.product-info .pname{
    margin:0;
    font-size:18px;
    line-height:1.4;
    font-weight:600;
    color:#222;
    flex:1;
    transition:.3s;
}

.product-btn{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#edf5ff;
    color:var(--steel);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
    transition:.35s;
}

.product-btn i{
    transition:.35s;
}

.product-card:hover .product-btn{
    background:var(--brass);
    color:#fff;
}

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

.product-card:hover .pname{
    color:var(--brass);
}

@media(max-width:768px){

    .product-info{
        padding:15px;
    }

    .product-info .pname{
        font-size:16px;
    }

    .product-btn{
        width:46px;
        height:46px;
        font-size:18px;
    }
}

.filter-button-grp {
  position: relative;
  padding-inline: 40px;
}

.filter-button-grp .swiper-button-next,
.filter-button-grp .swiper-button-prev,
.faq-sec .swiper-button-next,
.faq-sec .swiper-button-prev {
  background: var(--bg-light);
  color: var(--steel);
  width: 28px;
  height: 28px;
  border-radius: 0;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.filter-button-grp .swiper-button-next:hover,
.filter-button-grp .swiper-button-prev:hover {
  border: 1px solid var(--steel);
  background-color: white;
}

.faq-sec .swiper-button-next,
.faq-sec .swiper-button-prev {
  background: var(--steel);
  color: var(--white);
}

.faq-sec .swiper-button-next,
.faq-sec .swiper-button-prev {
  top: 68%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 10px;
}

.filter-button-grp .swiper-button-next,
.faq-sec .swiper-button-next {
  right: 0;
}
.filter-button-grp .swiper-button-prev,
.faq-sec .swiper-button-prev {
  left: 0;
}

/* .swiper-button-disabled{
  display: none;
} */

.filter-pro-button {
  border: 0;
  width: auto;
  text-align: left;
  border-radius: 0;
  color: var(--navy);
  font-size: 15px;
  padding: 8px 15px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 500;
  background-color: transparent;
  align-content: center;
  display: block;
  border: 1px solid transparent;
}

.filter-pro-button:hover {
  color: var(--steel);
}

.filter-pro-button.active {
  border: 1px solid var(--steel);
  color: var(--steel);
}

.filter-pro-button img {
  width: 22px;
  margin-right: 2px;
}

.filter-pro-button.active img {
  filter: brightness(0) invert(1);
}
.cate-bx {
  background-color: var(--bg-light);
  border: 2px solid var(--bg-light);
}
.cate-bx .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.cate-bx .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  z-index: 1;
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx .img:hover::before {
  opacity: 0.3;
}

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

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

.cate-bx .tx-bx {
  padding: 20px;
}

.cate-bx .tx-bx .tt {
  font-size: 18px;
  margin-bottom: 5px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-family: var(--font);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cate-bx:hover .tx-bx .tt a {
  color: var(--steel);
}

.cate-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
}

.blog-bx {
  background-color: var(--bg-light);
}

.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;
  border-left: 5px solid var(--steel);
  font-size: 25px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.blog-sec .img-bx {
  margin: 20px auto;
  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;
  gap: 25px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-right: 0;
  border-left: 0;
  padding-block: 7px;
}

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

.blog-date li:first-child {
  background-color: var(--steel);
  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-size: 20px;
  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(--steel);
}

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

.blog-bx.blog-card {
  display: flex;
  transition: 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

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

.blog-bx.blog-card .img-bx,
.blog-bx.blog-card .img-bx img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100px;
  min-width: 100px;
}

.blog-bx.blog-card .tx-bx {
  align-content: center;
  padding: 15px;
  flex-grow: 1;
}

.blog-bx.blog-card .tx-bx .tt a {
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

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

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font-body);
  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(--steel);
}

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

.you_may {
  font-family: var(--font);
  font-weight: 600;
  font-size: 27px;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.you_may span {
  color: var(--steel);
}

.you_may::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0px;
  width: 45px;
  height: 2px;
  background: var(--steel);
}

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

.pr-li:hover {
  border: 1px solid var(--border-color);
}

.pr-li .img_bx {
  padding: 0;
  border-right: 1px solid var(--bg-light);
  height: 100%;
}

.pr-li:hover .img_bx {
  border-color: var(--border-color);
}

.pr-li .img_bx img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.pr-li .g_100 .img_bx {
  border: 0;
}

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

.grid.pr_view .pr-li .tx-bx {
  padding-top: 0;
}

.pr-li .tx-bx .title {
  color: var(--steel);
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.pr-li:hover .tx-bx .title {
  border-color: var(--border-color);
}

.grid.pr_view .pr-li .tx-bx .title {
  text-align: center;
  border: none;
  margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
  text-align: center;
}

.pr-li .tx-bx .title a {
  font-size: 20px;
  color: var(--black);
  transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
  color: var(--steel);
}

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

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

.pr-li .tx-bx .info table thead {
  background-color: var(--steel);
  color: white;
  text-align: center;
}

.grid.pr_view .pr-li .tx-bx .info {
  display: none;
}

.pr-li .tx-bx .info::-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 .bt_bx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

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

.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.multi-imgs .imgs {
  border: 1px solid #e3e3e3;
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.multi-imgs .imgs.active {
  border: 1px solid var(--steel);
}

.multi-imgs .imgs img {
  object-fit: contain;
  object-position: center;
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #cdcdcd;
  padding: 5px 8px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
  color: var(--text-color);
}

.productBrochureandvideo a svg {
  color: #b90000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.productBrochureandvideo a:hover {
  color: #444;
  border: 1px dashed #444;
}

.v-btn svg {
  width: 42px;
}

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

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

.enq-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/enq-shape.webp);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

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

.custom-from-row .form-control {
  border-radius: 5px;
  height: 45px;
  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: 45px;
}

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

.map-shape {
  background-image: url(../images/map-shape.webp);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: scroll;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}
.industries-bx{
    overflow:hidden;
    background:#fff;
    border-radius:18px;
    transition:.45s;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    border:1px solid #eef1f5;
}

.industries-bx:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

/* image */

.industries-bx .img{
    display:block;
    overflow:hidden;
}

.industries-bx .img img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:.6s;
}

.industries-bx:hover .img img{
    transform:scale(1.08);
}

/* text area */

.industries-bx .tx-bx{

    position:relative;
    padding:18px 20px 20px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:15px;
    border-top:4px solid var(--steel);
}

/* icon */

.industries-bx .cat-icon{
margin: 0;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#eef7ff;
    color:var(--steel);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    flex-shrink:0;

    transition:.4s;
}

.industries-bx:hover .cat-icon{

    background:var(--steel);
    color:#fff;
}

/* title */

.industries-bx .tt{

    flex:1;

    color:#222;
    font-size:17px;
    font-weight:600;
    line-height:1.4;
    text-decoration:none;
    transition:.3s;
}

.industries-bx:hover .tt{

    color:var(--steel);
}

/* arrow */

.industries-bx .arrow{

    width:38px;
    height:38px;

    border-radius:50%;

    background:#f5f7fa;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#777;

    transition:.35s;
}

.industries-bx .arrow i{

    transition:.35s;
}

.industries-bx:hover .arrow{

    background:var(--steel);
    color:#fff;
}

.industries-bx:hover .arrow i{

    transform:translateX(4px);
}

.breadcum-sec {
  background: url(../images/abt-banner.jpg);
  background-position: center;
  padding: 140px 0 60px;
  background-size: cover;
  position: relative;
  z-index: 1;
  font-family: var(--font);
  margin-top: 42px;
}

.breadcum-sec.breadcum-sec2 {
  background: #f1f1f1;
  padding: 8px 0;
  border-bottom: 2px solid var(--border-color);
}

.breadcum-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0 38 60 / 88%) 25%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.breadcum-sec.breadcum-sec2::before {
  content: none;
}

.breadcum-sec .main-tt {
  font-size: 27px;
  color: white;
  /* font-weight: 600; */
  margin-bottom: 8px;
}

.breadcum-sec .main-tt span {
  color: var(--white);
}

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

.breadcum-sec ul li {
  color: white;
  font-weight: 400;
  font-size: 15px;
  position: relative;
  font-family: var(--font-body);
}

.breadcum-sec.breadcum-sec2 ul li {
  color: var(--navy);
  font-size: 15px;
}

.breadcum-sec ul li::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
  position: absolute;
  top: 1px;
  right: -19px;
  width: 20px;
  height: 20px;
}

.breadcum-sec.breadcum-sec2 ul li::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="%23333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
}

.breadcum-sec ul li:last-child:before {
  content: none;
}

.breadcum-sec ul li a {
  color: #ffffffcc;
}

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

.breadcum-sec ul li a:hover {
  color: var(--steel);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
  color: var(--steel);
}
.abt-img-bx {
  float: right;
  max-width: 600px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

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

.why-bx svg{
  width: 50px;
  height: 50px;
  color: var(--steel);
}

.why-bx .tt{
  font-family: var(--font);
  font-size: 20px;
  color: var(--white);
  margin-block: 10px;
  letter-spacing: 0.5px;
}

.why-bx p{
  color: var(--bg-light);
}

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

.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.vidBx .imgBx {
  position: relative;
}

.vidBx .imgBx img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  outline: 0;
  transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .tx-bx .tt {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 1px;
  text-transform: capitalize;
  text-align: center;
}

.vidBx:hover .tx-bx .tt {
  color: var(--steel);
}

.vidBx .tx-bx p {
  text-align: center;
}
  .doc-chip{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  color:#E4EBF1;border-radius:var(--radius);padding:16px 10px;text-align:center;
  font-size:.82rem;font-weight:600;height:100%;display:flex;flex-direction:column;align-items:center;gap:8px;
}
.doc-chip i{font-size:1.4rem;color:var(--brass-light);}
.cert-logos span{
  display:inline-block;padding:8px 18px;border:1px solid rgba(255,255,255,.25);
  border-radius:20px;color:#C9D6E3;font-size:.8rem;font-weight:600;letter-spacing:.4px;
}

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

.process-sec {
  position: relative;
  z-index: 1;
  align-content: center;
}

.process-sec::before,
.process-sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/expertise-info-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  z-index: -1;
  filter: grayscale(1);
}

.process-sec::after {
  background: var(--black);
  opacity: 0.4;
}

.process-bx .tt {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 17px;
}

.process-bx .tt span:nth-child(2) {
  color: var(--steel);
}

.process-bx .bar {
  height: 5px;
  background-color: #f4f5f8;
  border-radius: 0;
  position: relative;
}

.process-bx .bar::after {
  content: "";
  position: absolute;
  background: transparent;
  height: 18px;
  border-right: 2px solid var(--steel);
  bottom: 0;
}

.process-bx .bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--steel);
  border-radius: 0;
  transition: 1s ease-in-out;
}

.process-bx:nth-child(1) .bar::before,
.process-bx:nth-child(1) .bar::after {
  width: 85%;
}

.process-bx:nth-child(2) .bar::before,
.process-bx:nth-child(2) .bar::after {
  width: 92%;
}

.process-bx:nth-child(3) .bar::before,
.process-bx:nth-child(3) .bar::after {
  width: 76%;
}

.content-sec.img-content {
  background-color:var(--bg-light);
  align-content: center;
  position: relative;
  z-index: 1;
}

.content-sec.img-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:var(--bg-light);
  z-index: -1; 
  pointer-events: none;
}

.content-sec.img-content .scroll-bx {
  max-height: 440px;
  overflow-y: auto;
  padding-right: 8px;
}

.content-sec.img-content .scroll-bx::-webkit-scrollbar {
  background-color: transparent;
  width: 0px;
}

.content-sec.img-content .scroll-bx:hover::-webkit-scrollbar {
  width: 5px;
}

.content-sec.img-content .scroll-bx:hover::-webkit-scrollbar-thumb {
  background-color: rgba(232, 232, 232, 0.861);
}

.back-to-top{
  position:fixed;bottom:24px;right:20px;z-index:1050;
  width:44px;height:44px;border-radius:50%;border:none;
  background:var(--navy);color:#fff;font-size:1.1rem;
  display:none;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
.back-to-top.show{display:flex;}

@media (hover: none) {
  .content-sec.img-content .scroll-bx::-webkit-scrollbar {
    width: 5px;
  }

  .content-sec.img-content .scroll-bx::-webkit-scrollbar-thumb {
    background-color: rgba(225, 225, 225, 0.2);
  }
}


.industry-card2 {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s ease;
    background: #fff;
}

.industry-card2 img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.industry-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brass); /* Change to your primary color */
    padding: 16px 10px;
    text-align: center;
}

.industry-overlay h5 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.industry-card2:hover {
    transform: translateY(-8px);
}

.industry-card2:hover img {
    transform: scale(1.08);
}

@media (max-width:991px){
    .industry-card img{
        height:260px;
    }
}

@media (max-width:576px){
    .industry-card2 img{
        height:220px;
    }

    .industry-overlay{
        padding:12px 8px;
    }

    .industry-overlay h5{
        font-size:14px;
    }
}


.content-sec.img-content .main-tt,
.content-sec.img-content h1,
.content-sec.img-content h2,
.content-sec.img-content h3 {
  color: var(--ink);
  line-height: 1.3;
  font-size: 30px;
  margin-bottom: 5px;
}

.content-sec.img-content h2,
.content-sec.img-content h3 {
  font-size: 25px;
}

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

.content-sec.img-content p,
.content-sec.img-content ul li {
 color: var(--ink);
   
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}

.content-sec.img-content ul li {
  margin-bottom: 2px;
}

.faq-sec .nav-pills .nav-link {
  background-color: white;
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0;
  border: 1px solid transparent;
}

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

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--steel);
  /* border: 1px solid var(--steel); */
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 10px 17px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--steel);
}

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

.accordion-button {
  background: transparent;
  font-weight: 400;
  letter-spacing: 0.5px;
  outline: 0 !important;
  font-family: var(--font);
  color: var(--text-color);
  font-size: 16px;
  padding: 5px 0;
}

.accordion-body {
  line-height: 1.5;
  font-size: 14px;
  color: var( --ink);
  padding: 0;
  padding-bottom: 5px;
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--text-color);
}

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

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bc4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}


.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;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--steel);
  color: var(--white);
  font-size: 15px;
  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(--steel);
}

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

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 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; */
}

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

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

.modal-content {
  background: #f5f5f5;
  border-radius: 10px;
  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;
}

.modal-content .main-tt {
  text-align: center;
  font-size: 18px;
  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: 400;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
  color: var(--font);
}

.cmTitle {
  color: var(--steel);
  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: 0;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}

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

.content-sec p,
.content-sec ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var( --ink);
  text-align: justify;
  font-family: var(--font-body);
  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(--steel);
  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 a {
  margin-right: 15px;
  font-weight: 300;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--bg-light);
}

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

.cta-sec {
  position: relative;
  display: block;
  padding: 70px 0px;
  z-index: 1;
  overflow: hidden;
  background-color: var(--bg-light);
}

.cta-sec .layer-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170%;
  height: 305px;
  background-position: left center;
  background-repeat: repeat-x;
  z-index: -1;
  opacity: 1;
}

.banner-animate {
  animation-name: banner-animate;
  animation-duration: 70s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: banner-animate;
  -webkit-animation-duration: 70s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: banner-animate;
  -moz-animation-duration: 70s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: banner-animate;
  -ms-animation-duration: 70s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: banner-animate;
  -o-animation-duration: 70s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

@keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

footer {
  overflow: hidden;
  padding: 60px 0 20px;
  position: relative;
  z-index: 1;
 background-color: var(--navy-deep); 
}
  
.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .logo img {
  max-width: 180px;

  max-height: 100%;
}

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

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

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

.ft-bx .ft-tt {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative; 
}

 

.ft-bx p {
  color: var(--white);
  line-height: 1.6;
  opacity: 0.8;
  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: 15px;
  color: var(--white);
  padding: 5px 0;
  transition: 0.1s;
  display: inline-block;
  /* font-weight: 500; */
  opacity: 0.8;
}

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

.ft-bx ul.social {
  display: flex;
  gap: 7px;
  justify-content: start;
}

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

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

.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: #f8f8f8;
  padding: 30px;
  border: 1px solid #f8f8f8;
  height: 100%;
}

.ft-bx ul.social li a:hover {
  border-color: var(--steel);
  background-color: var(--steel);
  color: white;
}

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

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

.copyright p {
  color: var(--white);
  margin-bottom: 0;
  /* font-size: 15px; */
  opacity: 0.8;
}

.copyright p a {
  color: var(--white);
  display: inline;
}

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

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(--bg-light);
  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(--font-body);
  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(--steel);
}

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

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

.market-sec h2,
.market-sec h3 {
  font-size: 25px;
}

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

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

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

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

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

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

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


.second-content-bx .tx-bx {
  padding: 25px;
  padding-bottom: 15px;
  background-color: white;
  border: 1px solid var(--border-color);
  height: 100%;
  align-content: center;
  border-radius: 0px;
  max-height: 440px;
  overflow-y: auto;
}
.second-content-bx .img img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.second-content-bx .tx-bx::-webkit-scrollbar {
  background-color: transparent;
  width: 0px;
}

.second-content-bx .tx-bx:hover::-webkit-scrollbar {
  width: 5px;
}

.second-content-bx .tx-bx:hover::-webkit-scrollbar-thumb {
  background-color: rgba(75, 86, 97, 0.5);
}