
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

html{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif !important;
    overflow-x:hidden;
    overflow-y:auto;
}
/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
    overflow: hidden;
}

body{
    font-family: 'Outfit', sans-serif !important;
} */
.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}
.customecon{
    max-width: 1440px !important;
}
a{
    text-decoration:none !important;
}

/* Top Header */

.top-header{
    background: #0C4A6E;
    background: linear-gradient(91deg,rgba(12, 74, 110, 1) 35%, rgba(6, 182, 212, 1) 100%);
    color:#fff;
    padding:10px 0;
    font-size:14px; 
}
.top-left span{
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-left span i{
    font-size: 16px;
    margin-right: 5px;
}
.top-left span a{
    color: #fff;
    font-weight: 600;
}
.top-right {
  text-align: end;
}
.top-right{
    width: 100%;
    overflow: hidden;
}

.announcement-wrapper{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.announcement-track{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollAnnouncement 50s linear infinite;
}

.announcement-item{
    display: inline-flex;
    align-items: center;
    margin-right: 80px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.announcement-item i{
    margin-right: 0px;
  color: #fff;
  font-size: 12px;
}

@keyframes scrollAnnouncement{
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.announcement-wrapper:hover .announcement-track{
    animation-play-state: paused;
}
/* Main Header */

.main-header{
    background:#fff;
    padding:8px 0;
    border-bottom:1px solid #e5e7eb;
}

.scitemp-header{
    position:relative;
    z-index:1000;
}

.main-header .container{
    /* display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px; */
}
.logo {
  display: flex;
  align-items: center;
}
.logo h2{
    color:#0c4a6e;
    font-size:35px;
    font-weight:500;
    margin-bottom: 0;
}

.logo a img {
  width: 100%;
  margin-bottom: 0;
  max-width: 200px;
}

.footer-logo-scitemp img{
    /* max-height: 40px; */
    width: 100%;
  display: block;
  margin-bottom: 12px;
  max-width: 200px;
}

.logo span{
    color:#06b6d4;
}

.logo small{
    color:#666;
}

/* Search */
.search-container{
    /* width:700px; */
    position:relative;
}

.search-box{
    position:relative;
}

.search-box input{
    width:100%;
    /* height: 44px; */
    height: 50px;
    border: 2px solid #d9e2ec;
    border-radius: 4px;
    padding:0 60px 0 20px;
    font-size:13px;
    font-family: 'Outfit', sans-serif !important;
     position:relative;
    z-index:2;
    background:transparent;
}
.search-box input:focus{
    outline:none;
    border-color:#0c4a6e;
}
.search-box button{
    position:absolute;
    right: 1px;
    top: 0px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0 4px 4px 0;
    background:#0c4a6e;
    color:#fff;
}
.search-placeholder-animation{
    position:absolute;
    left:1px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    gap:10px;
    pointer-events:none;
    transition:.35s;
    z-index:1;
}
.search-placeholder-animation img{
      width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px 0 0 4px;
  transition: .35s;
  background: aliceblue;
  border-right: 1px solid #e1e1e1
}
.search-placeholder-animation span{
    font-size:13px;
    color:#777;
    white-space:nowrap;
    transition:.35s;
    font-family: 'Outfit', sans-serif !important;
}
/* Hide while typing */
.search-box input:focus + .search-placeholder-animation{
    opacity:0;
}
.search-box input:not(:placeholder-shown)+.search-placeholder-animation{
    opacity:0;
}
.search-dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    margin-top:10px;
    max-height:500px;
    overflow-y:auto;
    display:none;
    z-index:999;
}

.search-dropdown.active{
    display:block;
}

.dropdown-section{
    padding:20px;
}

.dropdown-section h5{
    margin-bottom:15px;
    color:#777;
    font-size:14px;
}

.suggestion-list{
    list-style:none;
    padding:0;
}

.suggestion-list li{
    padding:10px 0;
    cursor:pointer;
    font-size: 14px;
    border-bottom:1px solid #f2f2f2;
}

.suggestion-list li:hover{
    color:#0c4a6e;
}

.product-item{
    display:flex;
    gap:15px;
    padding:12px 0;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.product-item:hover{
    background:#f8fbfd;
}

.product-item img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.product-info h4{
    margin:0;
    font-size:15px;
    color:#222;
}

.product-info p{
    margin-top:5px;
    color:#888;
    font-size:13px;
}
/* Right */

.header-right{
   display: flex;
  align-items: center;
  gap: 25px;
  justify-content: end;
  height: 100%;
}

.header-icon{
    color:#fff;
    font-weight:500;
    font-family: 'Outfit', sans-serif !important;
    border: 1px solid #fff;
    padding: 2px 12px 4px;
    border-radius: 4px;
    background: #0c4a6e;
    transition: background .25s ease, color .25s ease;
}

/* .header-icon:hover{
    background: #0e6a9e;
    color: #fff;
} */
button.pulse-button {
  animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in;
}
.button.pulse-button:hover,
.button.pulse-button:focus {
  animation: borderPulse 1000ms infinite ea se-out, colorShift 10000ms infinite ease-in, hoverShine 200ms;
}
@keyframes colorShift {
  0%, 100% {
      background: #0c4a6e;
  }
  33% {
    background: #2f95d0;
  }
  66%{
    background: #81caf5;
  }
}

/* Declare border pulse animation */
@keyframes borderPulse {
  0% {
    box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
  }
  100% {
    box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
  }
}

/* Declare shine on hover animation */
@keyframes hoverShine {
  0%{
    background-image: linear-gradient(135deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
  }
  50%{
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
  }
  100%{
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4) 100%);
  }
}
.header-icon i{
    margin-right:8px;
    color:#0c4a6e;
}

/* Contact Dropdown */

.contact-dropdown{
    position:relative;
}

.contact-dropdown > a{
    color:#0c4a6e;
    font-size:15px;
    font-weight:700;
    display: flex;
  gap: 4px;
}

.contact-menu{
    position:absolute;
    top:100%;
    right:0;
    width:320px;
    background:#fff;
    padding:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.contact-dropdown:hover .contact-menu{
    opacity:1;
    visibility:visible;
}

.contact-menu h4{
    margin-bottom:15px;
}

.contact-menu p{
    margin:15px 0;
}
.contact-slider{
    position: relative;
  width: 150px;
  height: 22px;
  overflow: hidden;
}

.contact-item{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.contact-item.active{
    opacity: 1;
    transform: translateY(0);
}

.contact-item a{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3d424f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.contact-item i{
    font-size: 20px;
}

.fa-whatsapp{
    color: #0c4a6e;
}

.fa-envelope{
    color: #0c4a6e;
}
/* Navigation */

.navbar-menu{
    background: #fff;
  padding: 0 !important;
}

.navbar-menu ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar-menu ul li{
    position:relative;
}

.navbar-menu ul li a{
    display:block;
    padding:8px 0;
    color:#111827;
    font-weight:500;
    font-family: 'Outfit', sans-serif !important;
}

.navbar-menu ul li a:hover{
    color:#0891b2;
}
.myedit{
    font-size: 30px;
}
/* Mega Menu */

.mega-menu{
    position:absolute;
    left: -80px;
    top: 100%;
    width: 1424px;
    background:#fff;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1100;
    background-image: url(../../assets/images/06a96fe25deed720d63232651be100fd.jpg);
    background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 8px 8px;
}

.mega-dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
}

.mega-menu h4{
    margin-bottom:15px;
    color:#0c4a6e;
    font-size: 16px;
}

.mega-menu a{
    display:block;
    padding:8px 0;
    color:#555;
    font-size: 15px;
}

/* Preview area */
.previewcatee {
  position: relative;
  width: 100%;
  min-height: 200px;
  /* margin-top: 15px; */
  /* background: #f9f9f9; */
  /* border: 1px solid #ddd; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url(../../assets/images/creative-background-with-white-shapes.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.previewcatee img {
    width: 100%;
  max-width: 200px;
  height: 200px;
  display: none; /* hidden by default */
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.previewcatee img.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}
/* Preview area for active image */

.previewcatee img.active {
  opacity: 1;
  transform: scale(1);
}

.setting-btn {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  /* box-shadow: 0px 0px 0px 2px rgb(7, 168, 199); */
  margin-top: auto;
  margin-bottom: auto;
}
.bar {
  width: 50%;
  height: 2px;
  background-color: rgb(6, 178, 208);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
}
.bar::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: rgba(12, 74, 110, 1);
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgb(6, 178, 208)e;
  transition: all 0.3s;
  box-shadow: 0px 0px 5px rgb(6, 178, 208);
}
.bar1::before {
  transform: translateX(-4px);
}
.bar2::before {
  transform: translateX(4px);
}
.setting-btn:hover .bar1::before {
  transform: translateX(4px);
}
.setting-btn:hover .bar2::before {
  transform: translateX(-4px);
}
.menuoff{
    width: 250px !important;
}

.menutitle{
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    font-family: 'Outfit', sans-serif !important;
}
.menubody{
    padding: 0 !important;
}
.menuul{
    list-style: none;
}
.menutags{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    font-family: 'Outfit', sans-serif !important;
    width: 100%;
    display: flex;
    background-color: #eeebeb;
    margin-bottom: 5px;
    padding: 7px 8px;
    border: 1px solid #eeebeb;
     border-bottom: 1px solid #eeebeb;
     justify-content: space-between;
     align-items: center;
}
.menutags:hover{
     /* border: 1px solid red;
     border-bottom: 1px solid red; */
}
.menuli:nth-child(2){
    display: flex;
}
.menuseul{
    width: fit-content !important;
}
.scitemp-equipment-menu{
    position:relative;
}

.scitemp-toggle{
    display:flex;
    align-items:center;
    gap:8px;
}

.scitemp-dropdown-panel{

    position:absolute;
    top:100%;
    left:0;

    width:700px;
    min-height:300px;

    background:#fff;

    display:flex;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    z-index:99999;
}

.scitemp-dropdown-panel.active{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.scitemp-left{

    width:40%;
    background:#f8f9fa;

}

.scitemp-category{

    display:block;

    padding:18px 20px;

    text-decoration:none;

    color:#222;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.scitemp-category:hover,
.scitemp-category.active{

    background:#0d6efd;
    color:#fff;

}

.scitemp-right{

    width:60%;

    text-align:center;

    padding:30px;

}

.scitemp-right img{

    width:220px;
    height:220px;

    object-fit:contain;

}

.scitemp-right h4{

    margin-top:15px;

    font-size:22px;

}

@media(max-width:991px){

    .scitemp-dropdown-panel{

        position:static;

        width:100%;

        flex-direction:column;

        display:none;

        opacity:1;
        visibility:visible;

        transform:none;

    }

    .scitemp-dropdown-panel.active{

        display:flex;

    }

    .scitemp-left,
    .scitemp-right{

        width:100%;

    }

}
/* -------------------Banner */
.banner-section{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.banner-item{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.5s ease;
    z-index:1;
    height: 500px;
}

.banner-item.active{
    opacity:1;
    z-index:2;
}

.banner-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-item::after{
    content:"";
    position:absolute;
    inset:0;
}

.banner-content{
      position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  max-width: 40%;
  text-align: left;
  background: #00000047;
  padding: 30px;
  border-radius: 50px 0 0 50px;
  left: 60px;
  margin: 0 0 0 auto;
  z-index: 9999;
  /* height: inherit; */
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content h1{
   font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Michroma", sans-serif;
    line-height: 40px;
}

.banner-content p{
    font-size:15px;
    text-align: left;
    color: #d0d0d0;
}
/* ------------------category slider */
.category-slider-section {
     padding: 32px 0;
  background: #f4f4f4;
  margin-bottom: 4px;
    }
@media (max-width:991px){
    .category-slider-section {
     padding: 0 0 0;
  
    }
}
    .category-slider-wrap {
      width: min(1420px, 100% - 1rem);
      margin: 0 auto;
      /* background: linear-gradient(180deg, #f6f8fb 0%, #d6e8fa 100%); */
      border-radius: 2px;
      /* padding: clamp(1.5rem, 4vw, 2.25rem); */
      padding: clamp(0.5rem, 0vw, 0.25rem);
      position: relative;
      overflow: hidden;
    }

    .category-slider-wrap::before {
      /* content: "";
      position: absolute;
      inset: auto -80px -90px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(12, 74, 110, 0.08);
      filter: blur(10px);
      pointer-events: none; */
    }

    .slider-head {
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .slider-btn {
      width: 46px;
      height: 29px;
      border: 1px solid rgba(20, 35, 56, 0.08);
      border-radius: 4px;
      background: rgba(255,255,255,0.92);
      color: #142338;
      cursor: pointer;
      font-size: 1rem;
      transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slider-btn:hover {
      transform: translateY(-2px);
      background: #0c4a6e;
      color: #fff;
      box-shadow: 0 8px 24px rgba(14, 33, 55, 0.06);
    }

    .category-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(234px, 1fr);
      gap: 0px;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
      padding-bottom: 0.5rem;
    }

    .category-track::-webkit-scrollbar {
      display: none;
    }

    .category-card {
      scroll-snap-align: start;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;;
      padding: 1.25rem 1rem;
      border-radius: 1px;
      background: rgba(255,255,255,0.72);
      border: 2px solid #f4f4f4;
      transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .category-card:hover,
    .category-card.active {
      background:  #ffffff;;
    
    }

    .category-thumb {
      width: 138px;
      height: 138px;
      /* border-radius: 50%;
      background: linear-gradient(180deg, #fbfbfc 0%, #edf1f5 100%); */
      display: flex;
      align-items: center;
      justify-content: center;
      /* box-shadow: inset 0 0 0 1px rgba(20, 35, 56, 0.04); */
      transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .category-card:hover .category-thumb,
    .category-card.active .category-thumb {
      transform: scale(1.04);
    }

    .category-icon .cateimg{
      width: 100%;
      height: 100%;
    }

    .category-card h1, .category-card h2, .category-card h3,
    .category-card h4, .category-card h5, .category-card h6 {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      line-height: 1.15;
      text-align: center;
      font-weight: 600;
      color: #002f50;
    }

    .category-card p {
      margin: 0;
      font-size: 12px;
      color: #6b7788;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      text-align: center;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .slider-dot {
      width: 5px;
      height: 5px;
      border: 0;
      border-radius: 999px;
      background: rgba(20, 35, 56, 0.16);
      cursor: pointer;
      transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slider-dot.active {
      width: 28px;
      background: #0c4a6e;
    }

    @media (max-width: 900px) {
      .category-track {
        grid-auto-columns: minmax(190px, 50%);
      }
    }

    @media (max-width: 640px) {
      .category-track {
        grid-auto-columns: minmax(160px, 50%);
      }

      .slider-head {
        justify-content: center;
      }
    }
    .home-titles h1, .home-titles h2, .home-titles h3, .home-titles h4, .home-titles h5, .home-titles h6{
        font-size: 30px;
        color: #000;
        font-family: 'Outfit', sans-serif !important;
        font-weight: 500;
    }
/* ------------------------Feartured category section */
.featured-products{
    padding:65px 0;
    /* background:#f7f9fc; */
}

.featured-container{
    display:grid;
    grid-template-columns:280px 420px 1fr;
    gap:5px;
}

/* Sidebar */

.category-sidebar{
    background:#fff;
    padding:38px;
    border:1px solid #e5e7eb;
}

.category-sidebar h1, .category-sidebar h2, .category-sidebar h3, .category-sidebar h4, .category-sidebar h5, .category-sidebar h6{
   font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase;
  background: linear-gradient(180deg, #003050 0%, #6dadd5 100%);
  text-align: center;
  padding: 6px 10px;
  border-radius: 2px;
}

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

.category-sidebar li{
    margin-bottom: 12px;    
}
.category-sidebar li i{
    font-size: 12px;
}
.category-sidebar a{
    text-decoration:none;
    color:#777;
    transition:.3s;
    font-size: 13.5px;
}

.category-sidebar li a:hover{
    color:#0077b6;
    padding-left:1px;
}

.view-all{
    display:inline-block;
    margin-top:20px;
    color:#0077b6 !important;
    font-weight: 500;
  background: #fff;
  padding: 7px 12px 8px;
  border-radius: 5px;
}

/* Banner */

.promo-banner{
    position:relative;
    overflow:hidden;
    min-height:780px;
}

.promo-banner img{
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.promo-content{
    position:absolute;
    top:50px;
    left:40px;
    right: 40px;
    z-index:2;
    /* max-width:320px; */
}

.promo-content span{
    display:block;
    color: #999;
  font-size: 14px;
    margin-bottom:15px;
}

.promo-content h2{
    font-size: 33px;
  line-height: 1.2;
  color: #222529;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif !important;
}

.promo-content p{
    color: #222529;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 13px;
  font-weight: 300;
}

.promo-content a{
    display:inline-block;
    padding: 6px 15px;
    background:#6daed5;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-family: 'Outfit', sans-serif !important;
}

/* Product Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 5px;
    align-content: start;
    overflow: hidden;
}

.product-card{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:12px;
    transition:.4s;
    display: flex;
    flex-direction: column;
}

.product-card:hover{
    transform:translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product-card img{
    width:100%;
    height: 150px;
    object-fit:contain;
    flex-shrink: 0;
}

.product-card h1, .product-card h2, .product-card h3, .product-card h4, .product-card h5, .product-card h6{
    margin-top: 8px;
    font-size: 18px;
    color: #0b2540;
    font-weight: 600;
    font-family: 'Outfit', sans-serif !important;
}

.product-card span{
    color: #0077b6;
    font-weight: 500;
    font-size: 13px;
    font-family: 'Outfit', sans-serif !important;
    margin-top: 20px;
    display: block;
}

.product-card .specs-center{
    flex: 1;
    min-height: 96px;
    max-height: 96px;
    overflow: hidden;
}

.product-card .buttonsect{
    margin-top: auto;
    padding-top: 12px;
}

/* Responsive */

@media(max-width:1400px){

    .featured-container{
        grid-template-columns:1fr;
    }

    .promo-banner{
        /* min-height:500px; */
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .product-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .promo-content h2{
        font-size:28px;
    }

    .category-sidebar{
        padding:25px;
    }
}
.buttonsect{
    margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.buttonsect .gq{
    font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #002f50;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #002f50;
}
.buttonsect .gc{
    font-size: 13px;
  font-weight: 600;
  color: #002f50;
  border: 1px solid #002f50;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #fff;
}
.allp-load-more-btn{
    color: #fff;
    font-weight: 500;
    font-family: 'Outfit', sans-serif !important;
    border: 1px solid #0c4a6e;
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 4px;
    background: #0c4a6e;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.allp-load-more-btn:hover{
    background: #0e6a9e;
    border-color: #0e6a9e;
    color: #fff;
}
.specs-center p{
    display: flex;
    margin-bottom: 4px;
    flex-wrap: wrap;
    line-height: 16px;
}
.specs-center p span{
    font-size: 13px;
    color: #555;
    margin-top: 2px;
}
.specs-center p span:first-child{
    font-weight: 500;
    color: #333;
    margin-right: 4px;
}
/* ---------------secitem slider section */
.scitemp-product-section{
    padding:80px 60px;
    background:#fff;
}

.scitemp-product-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.scitemp-product-title-area{
    display:flex;
    align-items:center;
    gap:40px;
}

.scitemp-product-title{
   font-size: 30px;
  color: #000;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500;
}

.scitemp-product-tabs{
    display:flex;
    gap:25px;
}

.scitemp-tab-btn{
    background:none;
    border:none;
    cursor:pointer;
    color:#777;
    font-size:17px;
    font-family: 'Outfit', sans-serif !important;
}

.scitemp-tab-btn.active{
    color:#0c4a6e;
    font-weight:600;
    border-bottom: 1px solid #21a3d2;
}

.scitemp-view-all-btn{
    background:#0c4a6e;
    color:#fff;
    padding: 6px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.scitemp-slider-wrapper{
    position:relative;
}

.scitemp-slider-track-container{
    overflow:hidden;
        position:relative;
}

.scitemp-slider-track{
    display:flex;
    transition:transform .6s ease;
}

.scitemp-product-card{
    min-width:20%;
    border:1px solid #e5e5e5;
    background:#fff;
    position: relative;
    padding: 15px;
}

.scitemp-product-image-wrap{
    position:relative;
    overflow:hidden;
   width: 160px;
  height: 160px;
  margin: 20px auto 0;
}

.scitemp-product-image{
    width:100%;
    height:100%;
    transition:.4s;
}

.scitemp-product-card:hover .scitemp-product-image{
    /* transform:scale(1.08); */
}

.scitemp-catalog-btn{
    position:absolute;
    top:0;
    right:-180px;
    background:#6daed5;
    color:#fff;
    padding: 4px 8px;
    text-decoration:none;
    transition:.4s ease;
    visibility: hidden;
    display: none;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
}
.scitemp-catalog-btn i{
    color: #fff;
}

.scitemp-product-card:hover .scitemp-catalog-btn, .product-card:hover .scitemp-catalog-btn, .pp-product-card:hover .scitemp-catalog-btn{
    right:0;
    visibility: visible;
    display: block;
}
.scitemp-compare-btn{
    position:absolute;
    top: 0px;
    left: 0px;
    background:#6daed5;
    color:#fff;
    padding: 4px 8px;
    text-decoration:none;
    transition:.4s ease;
    visibility: hidden;
    display: none;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
}

.scitemp-product-card:hover .scitemp-compare-btn, .product-card:hover .scitemp-compare-btn, .pp-product-card:hover .scitemp-compare-btn{
    left:0;
    visibility: visible;
    display: block;
}
.scitemp-product-card span{
    color: #0077b6;
  font-weight: 500;
  font-size: 13px;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 20px;
  display: block;
}
.scitemp-product-info{
    padding:20px;
}

.scitemp-product-name{
    margin-top: 8px;
  font-size: 18px;
  color: #0b2540;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}

.scitemp-product-model{
    color:#666;
}

.scitemp-slider-nav{
    position:absolute;
    top:40%;
    width:45px;
    height:45px;
    border:none;
    cursor:pointer;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:5;
}

.scitemp-prev-btn{
    left:-20px;
}

.scitemp-next-btn{
    right:-20px;
}

@media(max-width:1200px){

    .scitemp-product-card{
        min-width:25%;
    }
}

@media(max-width:992px){

    .scitemp-product-card{
        min-width:33.333%;
    }
}

@media(max-width:768px){

    .scitemp-product-card{
        min-width:50%;
    }

    .scitemp-product-header{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:576px){

    .scitemp-product-card{
        min-width:100%;
    }
}

/* Tabs */

.scitemp-tab-btn.active{
    /* color:#fff;
    background:#0b6efd; */
}

/* Track */
.scitemp-slider-track{
    display:none;
    gap: 5px;
    transition:transform .5s ease;
    cursor:grab;
    user-select:none;
}

.scitemp-slider-track.active-track{
    display:flex;
}

/* Loader */

.scitemp-slider-loader{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.9);
    z-index:10;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.scitemp-slider-loader.show{
    opacity:1;
    visibility:visible;
}

.scitemp-loader-circle{
    width:50px;
    height:50px;
    border:4px solid #e5e5e5;
    border-top:4px solid #0b6efd;
    border-radius:50%;
    animation:spinLoader .8s linear infinite;
}

@keyframes spinLoader{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes fadeTrack{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* -----------------popular product */
.popular-product {
  /* background: #f7f9fc; */
    padding: 46px 60px;
}
.pp-columns{
    flex: 0 auto !important;
    width: 20% !important;
    padding: 0 !important;
    display: flex !important;
}
.pp-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 15px;
  transition: .4s;
  position: relative;
  margin: 3px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pp-product-card:hover{
    transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} 
.pp-product-card img {
  width: 100%;
  height: 150px;
  flex-shrink: 0;
  object-fit: contain;
}
.pp-product-card span {
  color: #0077b6;
  font-weight: 500;
  font-size: 13px;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 20px;
  display: block;
}
.pp-product-card h1, .pp-product-card h2, .pp-product-card h3, 
.pp-product-card h4, .pp-product-card h5, .pp-product-card h6 {
  margin-top: 8px;
  font-size: 18px;
  color: #0b2540;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}
.pp-product-card .specs-center {
  flex: 1;
}
.pp-product-card .specs-center p {
  display: flex;
  margin-bottom: 4px;
}
.pp-product-card .specs-center p span {
  font-size: 13px;
  color: #555;
  margin-top: 2px;
}
.pp-product-card .specs-center p span:first-child {
  font-weight: 500;
  color: #333;
  margin-right: 4px;
}
.pp-product-card .buttonsect {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}
 .pp-product-card .buttonsect .gq {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #0c4a6e;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #0c4a6e;
}
.pp-product-card .buttonsect .gc{
    font-size: 13px;
  font-weight: 600;
  color: #002f50;
  border: 1px solid #002f50;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 576px){
    .pp-columns{
    flex: 0 auto !important;
    width: 50% !important;
    padding: 0 !important;
}
.popular-product {
  background: #f7f9fc;
  padding: 6px 6px;
}
.pp-product-card .specs-center p {
  display: flex;
    flex-wrap: wrap;
}
.pp-product-card .specs-center p span {
  display: inline-block;
}
.pp-product-card .buttonsect .gc, .pp-product-card .buttonsect .gq {
  font-size: 9px;
}
}
@media (min-width: 577px) and (max-width: 768px){
    .pp-columns{
    flex: 0 auto !important;
    width: 50% !important;
    padding: 0 !important;
}
.popular-product {
  background: #f7f9fc;
  padding: 6px 6px;
}
.pp-product-card .specs-center p {
  display: inline;
}
.pp-product-card .specs-center p span {
  display: inline-block;
}

}
@media (min-width: 769px) and (max-width: 991px){
    .pp-columns{
    flex: 0 auto !important;
    width: 33.33% !important;
    padding: 0 !important;
}
.popular-product {
  background: #f7f9fc;
  padding: 6px 6px;
}
.pp-product-card .specs-center p {
  display: inline;
}
.pp-product-card .specs-center p span {
  display: inline-block;
}
}
@media (min-width: 992px) and (max-width: 1199px){
    .pp-columns{
    flex: 0 auto !important;
    width: 25% !important;
    padding: 0 !important;
}
.popular-product {
  background: #f7f9fc;
  padding: 6px 6px;
}
.pp-product-card .specs-center p {
  display: inline;
}
.pp-product-card .specs-center p span {
  display: inline-block;
}
}
/* -------------------promo banner */
.scitemp-promo-banner{
    width:100%;
    min-height: 440px;
    display:flex;
    /* background:#f8fbff; */
    overflow:hidden;
    position:relative;
    padding: 48px 48px;
    gap: 12px;
    margin-top: 4px;
}

.promo-left-panel{
    width:345px;
    /* background:rgba(0,80,180,.04); */
    background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e1e1e1;
    border-radius: 2px;
    padding: 60px 0px;
    display: none;
}

.promo-product-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:.6s ease;
    /* overflow-y: scroll;
  height: 415px;
  overflow-x: hidden; */
}

.promo-thumb{
    width: 256px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:4px;
    background:#fff;
    cursor:pointer;
    opacity:.5;
    transition:.4s;
}

.promo-thumb.active{
    opacity:1;
    transform:scale(1.08);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.promo-thumb img{
    width: 60px;
    height: 60px;
    object-fit:contain;
}

.promo-thumb span{
    font-size: 16px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}

.promo-main-content{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border: 3px solid #fff;
    margin: 0px;
    /* background: #6daed5; */
    background: #b4e3ff;
    /* background: #fff; */
    border-radius: 8px;
    background-image: url(../../assets/images/showcase4.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.promo-image-area{
    width:30%;
    display:flex;
    justify-content:center;
    height: 100%;
  background: #ffffff6b;
  border-radius: 8px;
  min-height: 360px;
}

.promo-image-area img{
    max-width:240px;
    width:100%;
    object-fit:contain;
    animation:floatProduct 3s ease-in-out infinite;
}

@keyframes floatProduct{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

}

.promo-content-area{
    width: 67%;
}

.promo-tag{
  display: inline-block;
  background: #f2f8ff;
  color: #0c4a6e;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 15px;
  font-size: 10px;
}

.promo-content-area h1, .promo-content-area h2, .promo-content-area h3,
.promo-content-area h4, .promo-content-area h5, .promo-content-area h6{
    font-size: 30px;
  margin-bottom: 15px;
  color: #002f50;
  font-weight: 600;
  font-family: "Michroma", sans-serif;
  background: #ffffff6b;
  text-align: center;
  padding: 2px 12px 7px;
  border-radius: 4px;
}

.promo-rating{
    font-size:18px;
    color:#ffb300;
    margin-bottom:20px;
}

.promo-rating span{
    color:#666;
    margin-left:10px;
    font-size: 15px;
}

#typedText{
    font-size: 15px;
  line-height: 1.8;
  color: #444;
  min-height: 150px;
  font-weight: 500;
}

.promo-btns{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.promo-catalog-btn,
.promo-details-btn{
    padding: 6px 15px;
  text-decoration: none;
  border-radius: 2px;
  transition: .3s;
  font-family: 'Outfit', sans-serif !important;
}

.promo-catalog-btn{
    background:#002f50;
    color:#fff;
}

.promo-details-btn{
    border:1px solid #002f50;
    color:#002f50;
}

.promo-catalog-btn:hover,
.promo-details-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:992px){

    .scitemp-promo-banner{
        flex-direction:column;
    }

    .promo-left-panel{
        width:100%;
        padding:20px;
    }

    .promo-product-list{
        flex-direction:row;
        overflow:auto;
    }

    .promo-main-content{
        flex-direction:column;
        text-align:center;
    }

    .promo-image-area{
        width:100%;
    }
    .promo-content-area{
        width:100%;
        margin-top: 10px;
    }

}

/* -------------------Banner */
.scitemp-promo-banner-section{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin: 0 60px 60px;
}

.scitemp-promo-banner-sc{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /* background:#f4f8fb; */
    overflow:hidden;
    min-height:280px;
    padding: 25px 25px 25px;
    position:relative;
    border-radius: 4px
}

.dark-banner{
    background:#0e2238;
}

.scitemp-promo-image{
    width: 36%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 2px dashed #fff;
  border-radius: 8px;
}

.scitemp-promo-image img{
    max-width:100%;
    max-height:165px;
    object-fit:contain;
    transition:.5s;
}

.scitemp-promo-banner-sc:hover img{
    transform:scale(1.08);
}

.scitemp-promo-content{
    width:60%;
    display: flex;
    flex-direction: column;
}

.scitemp-promo-content p{
    font-size:13px;
    line-height:1.7;
    color:#666;
    margin-bottom:25px;
    /* flex: 1; */
    overflow-y: auto;
  height: 150px;
  scrollbar-width: none;
  text-align: justify;
}

.scitemp-promo-banner-sc{
    display:flex;
    /* align-items:stretch; */
}

.promo-label{
    display:inline-block;
    background:#082f49;
    color:#fff;
    padding:10px 18px;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
}

.dark-banner .promo-label{
    background:#fff;
    color:#082f49;
}

.promo-offer{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.promo-offer span{
    font-size:12px;
    font-weight:600;
    color:#555;
}

.dark-banner .promo-offer span{
    color:#a0b8cc;
}

.promo-offer strong{
    background: #0b7fab;
  color: #fff;
  padding: 2px 7px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
}

.scitemp-promo-content h2{
   font-size: 25px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 500;
  color: #0e2238 !important;
  font-family: 'Outfit', sans-serif !important;
}

.dark-banner h2{
    color:#ffffff;
}

.scitemp-promo-content p{
    /* moved up to main block */
   
}

.dark-banner p{
    /* color:#cbd5e1; */
     color: #666;
}

.promo-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.promo-buttons a{
    padding: 3px 14px 4px;
  background: #0b7fab;
  color: #fff;
  font-weight: 500;
  transition: .3s;
  font-size: 14px;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif !important;
}

.promo-buttons a:last-child{
    background:#082f49;
}

.promo-buttons a:hover{
    transform:translateY(-2px);
}

@media(max-width:991px){

    .scitemp-promo-banner-section{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .scitemp-promo-banner-sc{
        flex-direction:column;
        text-align:center;
    }

    .scitemp-promo-image,
    .scitemp-promo-content{
        width:100%;
    }

    .scitemp-promo-content h2{
        font-size:30px;
    }

    .promo-buttons{
        justify-content:center;
    }

}

/* ----------------- */
.scitemp-sale-banner{
   width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 60px;
  background: linear-gradient( 90deg, #0b7fab 0%, #23a6d5 100% );
  overflow: hidden;
  position: relative;
}

.scitemp-sale-content{
    flex:1;
    z-index:2;
    border: 1px dashed #fff;
  border-radius: 12px;
  padding: 18px 18px 14px;
  text-align: center;
}

.scitemp-sale-subtitle{
    display:block;
    color:#ffffff;
    font-size:12px;
    letter-spacing:4px;
    margin-bottom:12px;
}

.scitemp-sale-content h2{
    color:#fff;
    font-size:24px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:15px;
    font-family: "Michroma", sans-serif;
}

.scitemp-sale-content p{
    color:#f4f4f4;
    font-size:14px;
    /* max-width:650px; */
    line-height:1.7;
    margin-bottom: 0;
}

.scitemp-sale-highlight{
    text-align:center;
    z-index:2;
}

.scitemp-sale-number{
    display:block;
    font-size:35px;
    line-height:1.5;
    color:#ffffff;
    font-weight:900;
    font-family: "Michroma", sans-serif;
}

.scitemp-sale-text{
    display:inline-block;
    background:#ffffff;
    color:#0b7fab;
    padding: 0px 15px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
}

.scitemp-sale-btn-wrap{
    z-index:2;
}

.scitemp-sale-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 3px 10px;
  background: #ffffff;
  color: #0b7fab;
  text-decoration: none;
  font-weight: 700;
  transition: .35s;
  font-size: 12px;
  border-radius: 50px;
}

.scitemp-sale-btn:hover{
    transform:translateY(-3px);
}

.scitemp-sale-image{
    position: absolute;
  /* right: 40px;
  bottom: 0;
  height: 100%; */
  display: flex;
  /* align-items: center;
  top: 0; */
  z-index: 99999;
  background: #fff6;
  border-radius: 12px 0 0 12px;
}

.scitemp-sale-image img{
  max-height: 130px;
  object-fit: contain;
  /* animation: floatProduct 4s ease-in-out infinite;
  margin-left: -20px; */
  border-radius: 12px;
}

@keyframes floatProduct{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:1200px){

    .scitemp-sale-number{
        font-size:110px;
    }

    .scitemp-sale-content h2{
        font-size:44px;
    }

}

@media(max-width:991px){

    .scitemp-sale-banner{
        flex-direction:column;
        text-align:center;
        padding:50px 25px;
    }

    .scitemp-sale-image{
        position:relative;
        right:auto;
        margin-top:20px;
        border-radius: 12px;
  }
    .scitemp-sale-number{
        font-size:90px;
    }

    .scitemp-sale-content h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .scitemp-sale-number{
        font-size:70px;
    }

    .scitemp-sale-content h2{
        font-size:28px;
    }

    .scitemp-sale-content p{
        font-size:15px;
    }

}
/* ------------------------Footer */
.scitemp-footer{
    background:#fff;
    padding: 40px 30px 0;
    border-top:1px solid #e5e5e5;
    position:relative;
}

.scitemp-footer-top{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    padding:40px 0px 8px;
    border-bottom:1px solid #ececec;
}
.scitemp-footer-column span{
     font-family: 'Outfit', sans-serif !important;
}
.scitemp-footer-column h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:30px;
    color:#111;
    font-family: 'Outfit', sans-serif !important;
}

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

.scitemp-footer-column ul li{
    margin-bottom:8px;
}

.scitemp-footer-column ul li a{
    text-decoration:none;
    color:#666;
    transition:.3s;
    font-size: 14px;
     font-family: 'Outfit', sans-serif !important;
}

.scitemp-footer-column ul li a:hover{
    color:#0c4a6e;
    padding-left:6px;
}

.scitemp-social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.scitemp-social-icons a{
    width:48px;
    height:48px;
    border:1px solid #e4e4e4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.scitemp-social-icons a:hover{
    background:#0b7fab;
    color:#fff;
    border-color:#0b7fab;
}

.scitemp-footer-middle{
    max-width:1440px;
    margin:auto;
    padding:8px 0px;
    display:flex;
    justify-content:space-between;
    gap:50px;
    border-bottom:1px solid #ececec;
}

.scitemp-footer-links{
    flex:1;
}

.scitemp-footer-links p{
    margin-bottom: 0px;
  line-height: 1.8;
  color: #666;
  font-size: 12px;
}

.scitemp-footer-links strong{
    color:#111;
    font-family: 'Outfit', sans-serif !important;
  font-size: 14px;
}

.scitemp-footer-links a{
    color:#1fa0ce;
    text-decoration:none;
    font-weight: 500;
  margin-left: 10px;
  font-size: 12px;
}
.scitemp-footer-links .fotcatlinks{
    color: #666;
    text-decoration:none;
    font-weight: 400;
  margin-left: 0 !important;
  font-size: 12px;
}
.scitemp-payment-area{
    min-width:280px;
}

.scitemp-payment-area h4{
    font-size:22px;
    margin-bottom:20px;
}

.scitemp-payment-icons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.scitemp-payment-icons span{
    padding:10px 16px;
    border:1px solid #ddd;
    font-weight:700;
    background:#fff;
}

.scitemp-footer-bottom{
    text-align: center;
  padding: 10px;
  color: #666;
  font-size: 12px;
}

.scitemp-back-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    background:#222;
    color:#fff;
    cursor:pointer;
    z-index:99;
    transition:.3s;
}

.scitemp-back-top:hover{
    background:#0b7fab;
}
.footer-logo-scitemp a h2{
    font-size: 35px;
    font-weight: 600;
    color: #0c4a6e;

}
.footer-logo-scitemp a h2 span{
    color: #06b6d4;
}
.logopara{
    font-size: 14px;
    color: #666;
    font-family: 'Outfit', sans-serif !important;
}
@media(max-width:991px){

    .scitemp-footer-top{
        grid-template-columns:repeat(2,1fr);
    }

    .scitemp-footer-middle{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .scitemp-footer-top{
        grid-template-columns:1fr;
    }

}
.main-scitemp-section {
  padding-bottom: 50px;
  padding-top: 20px;
}
.breadcrumb {
  font-size: 12px !important;
  padding:12px 16px 0 !important;
  border-top: 1px solid #e1e1e1 !important;
}
.breadcrumb .breadcrumb-item a{
    color: #002f50 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* ------------------------About Us */
.universla-title h1, .universla-title h2, .universla-title h3, .universla-title h4, .universla-title h5, .universla-title h6{
    margin: 20px 60px;
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-family: 'Outfit', sans-serif !important;
} 
.word-rotator-title{
    font-size: 20px;
    font-weight:500;
    color:#111;
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    font-family: 'Outfit', sans-serif !important;
}
.word-rotator-title span{
    font-size:25px;
    font-weight:700;
}
.word-rotate{
    position:relative;
    display:inline-block;
    height: 50px;
    overflow:hidden;
    vertical-align:middle;
    min-width:250px;
}

.word-rotate-items{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    transition:transform .6s ease;
}

.word-rotate-items span{
    display:flex;
    align-items:center;
    height:50px;
    color:#06b2d0;
    font-weight:500;
    white-space:nowrap;
    font-size: 30px;
    font-family: 'Outfit', sans-serif !important;
}

@media(max-width:768px){

    .word-rotator-title{
        font-size:20px;
    }

    .word-rotate{
        height:50px;
        min-width:180px;
    }

    .word-rotate-items span{
        height:50px;
        font-size: 20px;    
    }
}

.about-slider{
    position:relative;
    overflow:hidden;
    border-radius:4px;
    height:500px;
}

.about-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.7s ease;
}

.about-slide.active{
    opacity:1;
}

.about-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-slider-nav{
    position:absolute;
    bottom:20px;
    right:20px;
    display:flex;
    gap:10px;
    z-index:2;
}

.about-slider-nav button{
    width:30px;
    height:45px;
    border:none;
    background:rgba(255, 255, 255, 0.42);
    cursor:pointer;
    border-radius:6px;
}

.about-tag{
    color:#0077cc;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.aboutus-content h2{
    font-size:20px;
    margin:15px 0 20px;
    line-height:1.2;
     font-family: 'Outfit', sans-serif !important;
}

.aboutus-content p{
    color:#555;
    line-height:1.8;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap: 8px;
  margin: 16px 0;
}

.about-feature-card{
   display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.about-feature-card i{
    font-size:16px;
    color:#0c4a6e;
}
.about-feature-card span{
    font-size: 14px;
    font-family: 'Outfit', sans-serif !important;
}
.collapse-content{
    max-height:0;
    overflow:hidden;
    transition:.4s;
}

.collapse-content.active{
    max-height: 150px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.about-readmore{
   margin-top: 20px;
  padding: 4px 17px;
  background: #0077cc;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif !important;
}

@media(max-width:991px){

    .about-slider{
        height:350px;
        margin-bottom:40px;
    }

    .aboutus-content h2{
        font-size: 22px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}
p{
    font-size: 14px;
    color: #555;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.about-stat-item{
    background:#ffffff;
    padding:30px 20px;
    text-align:center;
    border-radius: 4px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

.about-stat-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#0c4a6e;
    transform:scaleX(0);
    transition:.4s;
}

.about-stat-item:hover::before{
    transform:scaleX(1);
}

/* .about-stat-item:hover{
    transform:translateY(-8px);
} */

.about-stat-item h3{
    font-size:42px;
    font-weight:700;
    color:#0c4a6e;
    margin-bottom:10px;
    line-height:1;
}

.about-stat-item span{
    display:block;
    font-size:15px;
    color:#666;
    font-weight:500;
    line-height:1.5;
    font-family: 'Outfit', sans-serif !important;
}

@media(max-width:991px){

    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .about-stats{
        grid-template-columns:1fr;
    }

    .about-stat-item h3{
        font-size:36px;
    }

}
/* -----------catalog */
.catalog-categories{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 5px;
}

.catalog-card{
    background:#fff;
    cursor:pointer;
    overflow:hidden;
    transition:.4s;
    /* box-shadow:0 5px 20px rgba(0,0,0,.08); */
    border: 1px solid #e1e1e1;
    /* border-radius: 4px; */
    display: flex;
  align-items: center;
}

/* .catalog-card:hover{
    transform:translateY(-10px);
} */

.catalog-card img{
    width: 100%;
  height: 150px;
  object-fit: cover;
  max-width: 150px;
  margin: 10px;
  display: block;
  background: #6eaed529;
}

.catalog-content{
    padding:20px;
    width: 100%;
}

.catalog-content h1, .catalog-content h2, .catalog-content h3, .catalog-content h4, .catalog-content h5, .catalog-content h6{
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}

.catalog-content span{
    color: #0077cc;
  font-weight: 600;
  font-size: 13px;
}

.catalog-product-section{
    display:none;
    animation:fadeIn .5s ease;
}

.catalog-product-section.active{
    display:block;
}

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

.catalog-header h2{
    font-size: 25px;
    font-family: 'Outfit', sans-serif !important;
    color: #06b2d0;
}

#backCatalogBtn{
    background:#002f50;
    color:#fff;
    border:none;
    padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.catalog-product-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    padding-top: 10px;
}

.catalog-product-item{
    background:#fff;
    padding: 0;
    border-left: 4px solid #0c4a6e;
    border-top: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 2px;
    transition: box-shadow .2s ease, transform .2s ease;
    overflow: hidden;
}

.catalog-product-item:hover{
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.catalog-product-link{
    display: block;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
}

.catalog-product-link:hover{
    text-decoration: none;
    color: inherit;
}

.catalog-product-item h1, .catalog-product-item h2, .catalog-product-item h3,
.catalog-product-item h4, .catalog-product-item h5, .catalog-product-item h6{
    margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #0c2d4e;
  line-height: 1.4;
  font-family: 'Outfit', sans-serif !important;
}

.catalog-product-sub{
    color: #8a9bb0;
    font-size: 13px;
    margin: 0;
}

.catalog-pdf-icon{
    font-size:32px;
    color:#dc3545;
    margin-bottom:0px;
    display:block;
    position: absolute;
  right: 15px;
}

.catalog-product-name{
    margin:0 0 8px;
}

.catalog-product-link{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-decoration:none;
    position: relative;
}
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){

    .catalog-categories,
    .catalog-product-list{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:576px){

    .catalog-categories,
    .catalog-product-list{
        grid-template-columns:repeat(2,1fr);
    }

    .catalog-header{
        flex-direction:column;
        gap:15px;
    }

}
/* ---------------All product */
.allp-container{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:5px;
    position:relative;
}

/* Section fade-in on scroll */
.allp-section-block{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}
.allp-section-block.allp-visible{
    opacity: 1;
    transform: translateY(0);
}

/* Lazy-loaded cards fade in when appended */
.allp-lazy-card{
    animation: allpCardIn .3s ease forwards;
}
@keyframes allpCardIn{
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.allp-sidebar {
  background: #f6f6f6;
  padding: 25px;
  border: 1px solid #e5e7eb;
  position:sticky;
 top:120px; /* Header height */
}
.allproduct-grid{
    flex:1;
}
@media(max-width:991px){

    .allp-sidebar{
        position:relative;
        top:auto;
        width:100%;
        display: none;
    }
    .allp-container {
        grid-template-columns: 1fr;
    }

}
.allp-sidebar h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #0b2540;
  font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}
.allp-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.allp-sidebar li {
  margin-bottom: 12px;
  display: flex; 
}
.allp-sidebar a {
  text-decoration: none;
  color: #777;
  transition: .3s;
  font-size: 13.5px;
}
.allp-sidebar .view-all {
  display: inline-block;
  margin-top: 20px;
  color: #0077b6 !important;
  font-weight: 600;
}
.allproduct-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  height: auto;
  /* overflow: auto;
  max-height: 880px; */
  gap: 5px;
}
.allproduct-grid .product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 15px;
  transition: .4s;
}
.allproduct-grid .product-card .scitemp-catalog-btn {
  position: absolute;
  top: 20px;
  right: -180px;
  background: #6daed5;
  color: #fff;
  padding: 4px 8px;
  text-decoration: none;
  transition: .4s ease;
  visibility: hidden;
  display: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
}
.allproduct-grid .product-card img {
  width: 100%;
  /* height: 220px;
  height: 150px; */
  object-fit: contain;
}
.allproduct-grid .product-card span {
  color: #0077b6;
  font-weight: 500;
  font-size: 13px;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 20px;
  display: block;
}
.allproduct-grid .product-card h4 {
  margin-top: 8px;
  font-size: 18px;
  color: #0b2540;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}
.allproduct-grid .product-card .specs-center p {
  display: flex;
  margin-bottom: 4px;
}
.allproduct-grid .product-card .specs-center p span {
  font-size: 13px;
  color: #555;
  margin-top: 2px;
}
.allproduct-grid .product-card .specs-center p span:first-child {
  font-weight: 700;
  color: #333;
  margin-right: 4px;
}
.allproduct-grid .product-card .buttonsect {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.allproduct-grid .product-card .buttonsect .gc {
  font-size: 13px;
  font-weight: 600;
  color: #0c4a6e;
  border: 1px solid #0c4a6e;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #fff;
}
.allproduct-grid .product-card .buttonsect .gq {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #0c4a6e;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #0c4a6e;
}
.allproduct-grid{
    position:relative;
}

.allp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  overflow: visible;
}

.allp-product-grid .product-card {
  min-height: 460px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.allp-product-grid .product-card > a:not(.scitemp-catalog-btn) {
  text-decoration: none;
}

.allp-product-grid .product-card img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

/* Catalog-style category label above the product name */
.allp-product-grid .product-card .allp-cat-label {
  display: block;
  margin: 12px 0 2px;
  color: #0077b6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  /* text-transform: uppercase; */
  font-family: 'Outfit', sans-serif !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Larger product name, fixed to 2 lines so card height is unaffected by name length */
.allp-product-grid .product-card h4 {
  font-size: 18px;
  font-weight: 600;
  min-height: 44px;
  margin: 2px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
}

/* Specs flow naturally and are never clipped */
.allp-product-grid .product-card .specs-center {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.allp-product-grid .product-card .specs-center p {
  display: grid;
  grid-template-columns: minmax(82px, 42%) minmax(0, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.allp-product-grid .product-card .specs-center p span {
  min-width: 0;
  margin-top: 0;
  overflow-wrap: anywhere;
}

.allp-product-grid .product-card .specs-center p span:first-child {
  font-weight: 600;
  margin-right: 0;
}

/* Buttons pinned to the bottom of every card */
.allp-product-grid .product-card .buttonsect {
  margin-top: auto;
  padding-top: 12px;
}

/* Fewer columns as the viewport narrows so cards stay readable */
@media (max-width: 1200px) {
  .allp-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.popular-product-loader{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:50;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    width: 80%;
  margin-left: auto;
}

.popular-product-loader.show{
    opacity:1;
    visibility:visible;
}

.scitemp-loader-circle{
    width:50px;
    height:50px;
    border:4px solid #e5e5e5;
    border-top:4px solid #0f5ef7;
    border-radius:50%;
    animation:loaderSpin .8s linear infinite;
}

@keyframes loaderSpin{
    100%{
        transform:rotate(360deg);
    }
}
.fade:not(.show) {
  opacity: 0;
  display: none;
}
/* --------------section */
#categoryCards{
    padding: 4px 0 80px;
    /* background:#f7f9fc; */
}

.sc-category-card{
    background:#fff;
    border:1px solid #e5e5e5;
    padding:30px;
    height:100%;
    border-radius:0;
    transition:.35s;
    position:relative;
    text-align: center;
    margin: 3px;
}

.sc-category-card:hover{
    transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sc-category-icon{
    width:70px;
    height:70px;
    border:1px solid #dcdcdc;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.sc-category-icon i{
    font-size:28px;
    color:#003366;
}

/* .sc-category-card:hover .sc-category-icon{
    border-color:rgba(255,255,255,.2);
}

.sc-category-card:hover .sc-category-icon i{
    color:#fff;
} */

.sc-category-card h3{
    font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 8px;
}

.sc-category-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.sc-category-card ul li{
    padding:8px 0;
    font-size:14px;
    border-bottom:1px solid #eee;
}

.sc-category-card a{
    display:inline-block;
    margin-top:4px;
    text-decoration:none;
    font-weight:600;
    color: #003366;
  font-size: 13px;
  border: 1px solid #e1e1e1;
  padding: 3px 12px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif !important;
}

/* Image & title links: keep them looking exactly as before (no border/outline) */
.sc-category-card a.sc-card-link{
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: inherit;
    font: inherit;
    text-decoration: none;
}
.sc-category-card a.sc-card-link:hover,
.sc-category-card a.sc-card-link:focus{
    border: 0;
    outline: 0;
    text-decoration: none;
}

/* .sc-category-card:hover h3,
.sc-category-card:hover ul li,
.sc-category-card:hover a{
    color:#fff;
} */

@media(max-width:991px){

    .sc-category-card{
        padding:25px;
    }

    .sc-category-card h3{
        font-size:15px;
    }

}
#nav-tab-section {
  gap: 5px;
  margin-bottom: 12px;
  border-bottom: 0;
}
.tabrow{
  border: 1px solid #e1e1e1;
  padding: 3px;
  background: aliceblue;
}
.custbtn{
    display: flex;
    width: 25%;
    border-radius: 0 !important;
    border: 1px solid #e5e5e5  !important;
    font-size: 17px !important;
    font-family: 'Outfit', sans-serif !important;
    color: #555 !important;
    flex: 1;
}
.custbtn.active{
    font-weight: 500;
    color: #fff !important;
    font-size: 18px !important;
    background: #0C4A6E !important;
    background: linear-gradient(91deg,rgba(12, 74, 110, 1) 35%, rgba(6, 182, 212, 1) 100%) !important;
    border: 1px solid #0C4A6E !important;
}
.custbtn{
    position:relative;
}
.custbtn.active::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-12px;

    transform:translateX(-50%);

    width:0;
    height:0;

    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:12px solid #0C4A6E;

    z-index:99;

}
/* .custbtn.active::before{
    content:'';
    position:absolute;
    left:50%;
    bottom:-7px;
    width:14px;
    height:14px;
    background:#003366;
    transform:translateX(-50%) rotate(45deg);
} */
.imagesection{
    width: 150px; height: 150px;
    display: flex;
  margin: 0 auto;
}
.imagesection img{
    width: 100%;
    height: 100%;
}

#nav-tabContent-section{
    position:relative;
    min-height:400px;
}

.category-tab-loader{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.92);
    z-index:99;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.category-tab-loader.show{
    opacity:1;
    visibility:visible;
}

.scitemp-loader-circle{
    width:50px;
    height:50px;
    border:4px solid #e5e5e5;
    border-top:4px solid #003366;
    border-radius:50%;
    animation:loaderSpin .8s linear infinite;
}

@keyframes loaderSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/* -----------category */
.freeze-dryer-category{
    padding:80px 0;
}

.category-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#003366;
    font-size:14px;
    margin-bottom:20px;
}

.category-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111;
}

.category-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.category-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.feature-item i{
    color:#003366;
}

.category-image img{
    width:100%;
}
.category-image{
    position:relative;
    overflow:hidden;
}
.glass-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,48,80,.65),
        rgba(109,173,213,.25)
    );

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}
.freeze-dryer-overview{
    padding:40px 0 80px;
}

.overview-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.overview-card{
    padding:25px;
    border:1px solid #e5e5e5;
    transition:.3s;
}

.overview-card:hover{
    background:#003366;
    color:#fff;
}

.freeze-dryer-applications{
    padding:80px 0;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.app-card{
    background:#fff;
    padding:30px;
    text-align:center;
    height:100%;
}

.app-card i{
    font-size:36px;
    color:#003366;
    margin-bottom:15px;
}

.app-card h4{
    margin-bottom:10px;
}

@media(max-width:991px){

    .overview-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .category-content h2{
        font-size:32px;
    }
}

@media(max-width:767px){

    .overview-grid{
        grid-template-columns:1fr;
    }

    .category-features{
        grid-template-columns:1fr;
    }

    .category-content h2{
        font-size:28px;
    }
}
.categorycont{
   background-color: #00336612;
  padding: 18px;
  border-radius: 4px;
}
.category-image {
  width: 229px;
  height: 229px;
  display: block;
  margin: 0 auto;
}
.category-name h1{
  font-size: 35px;
  color: rgb(0, 0, 0);
  font-family: 'Outfit', sans-serif !important;
}
.category-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5px;
  position: relative;
}
.category-sidebar {
  background: #edf7ff;
    padding: 26px;
  border: 1px solid #e5e7eb;
  background-image: url(../../assets/images/sidecategorybackimage.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.category-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 12px;
}
.category-sidebar ul li img{
    width: 40px;
    height: 40px;
}
.category-sidebar ul li a{
    font-size: 14px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif !important;
}
.category-grid {
  position: relative;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  height: auto;
  gap: 5px;
}
/* Prevent grid rows stretching when content is replaced via AJAX */
.category-grid, .product-grid {
    align-content: start;
    align-items: start;
    grid-auto-rows: auto;
    padding-top: 1px;
}
.category-grid {
  flex: 1;
}
/* ------Sub category */
.specification-filter{
    background:#fff;
    padding:20px;
    border:1px solid #e8e8e8;
    margin-bottom:20px;
}

.filter-group{
    margin-bottom:25px;
}

.filter-group h5{
    font-size:15px;
    margin-bottom:12px;
    font-weight:600;
}

.filter-group label{
    display:block;
    margin-bottom:10px;
    cursor:pointer;
}

.filter-group input[type="checkbox"]{
    margin-right:8px;
}

.filter-group input[type="range"]{
    width:100%;
}

.related-category,
.related-products{
    padding:20px;
    background:#fafafa;
    border:1px solid #eee;
    margin-top:20px;
}

.related-category h4,
.related-products h4{
    font-size: 14px;
    font-weight: 700;
    color: #0c2d4e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom:15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5edf3;
}

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

.related-category li{
    margin-bottom: 4px;
}

.related-category li a,
.related-products a{
    display: block;
    padding: 7px 10px;
    font-size: 13px;
    color: #444;
    border-left: 3px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
}

.related-category li a:hover,
.related-products a:hover{
    background: #eef5fa;
    color: #0c4a6e;
    border-left-color: #0c4a6e;
}

.related-products a{
    margin-bottom: 2px;
}

.category-filter-loader{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    z-index:20;
    transition:.3s;
}

.category-filter-loader.show{
    opacity:1;
    visibility:visible;
}

.category-grid{
    position:relative;
}

.product-card{
    transition:.4s ease;
}

.product-card.hide-card{
    opacity:0;
    transform:scale(.9);
    display:none;
}

.filter-box{
    margin-bottom:25px;
    border:1px solid #d8d8d8;
    border-radius: 4px;
}

.filter-box h4{
    margin:0;
    padding: 5px 15px;
    /* background:#00b7eb; */
    color:#fff;
    font-size:16px !important;
    font-family: 'Outfit', sans-serif !important;
    background: #0C4A6E;
  background: linear-gradient(91deg,rgb(12, 74, 110) 35%, rgb(6, 182, 212) 100%);
  border-radius: 4px 4px 0px 0px;
}

.filter-box label{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 15px;
    cursor:pointer;
    font-size: 13px;
     font-family: 'Outfit', sans-serif !important;
     border-bottom: 2px solid #fff;
}

.filter-box label:hover{
    background:#f7f7f7;
}

.filter-box input[type="checkbox"]{
    width: 12px;
  height: 12px;
    cursor:pointer;
}

.filter-loader{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.filter-loader.show{
    opacity:1;
    visibility:visible;
}

.product-card.hide{
    display:none !important;
}
.fiter-section span{
    font-size: 18px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif !important;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}
.fiter-section .filter-label{
    margin: 0;
  padding: 5px 15px;
  color: #fff;
  font-size: 16px !important;
  font-family: 'Outfit', sans-serif !important;
  background: linear-gradient(91deg,rgb(12, 74, 110) 35%, rgb(6, 182, 212) 100%);
  border-radius: 4px 4px 0px 0px;
  width: 100%;
  display:block;
}
/* --------------------Description page */
.description-gallery{
    display:flex;
    gap:20px;
    align-items:flex-start;
    position: sticky;
  top: 25px;
}

.thumb-slider{
    width:100px;
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top: auto;
  margin-bottom: auto;
}

.thumb{
    border:1px solid #ddd;
    cursor:pointer;
    overflow:hidden;
    transition:.3s;
    background:#fff;
    border-radius: 4px;
}

.thumb.active{
    border-color:#0d6efd;
}

.thumb img{
    width:100%;
    height:90px;
    object-fit:contain;
    padding:8px;
}

.description-image{
    flex:1;
    height:600px;
    border:1px solid #eee;
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius: 4px;
}

.description-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    transition:.3s;
}

/* Magnifier */

.magnifier-lens{
    position:absolute;
    top:0;
    left:0;
    width:180px;
    height:180px;
    border:2px solid #00b5e2;
    border-radius:50%;
    pointer-events:none;
    opacity:0;
    transition:opacity .2s;
    background-repeat:no-repeat;
    z-index:10;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    will-change:transform, opacity;
}

.description-image:hover .magnifier-lens{
    opacity:1;
}

.description-image{
    position:relative;
    overflow:hidden;
    cursor:crosshair;
}

.description-image img{
    width:100%;
    display:block;
    transition:.3s;
}
/* Responsive */

@media(max-width:991px){

    .description-gallery{
        flex-direction:column-reverse;
    }

    .thumb-slider{
        width:100%;
        flex-direction:row;
        overflow:auto;
        margin-bottom: 12px;
    }

    .thumb{
        min-width:90px;
    }

    .description-image{
        height:450px;
    }

}

.product-details-content{
    margin-top: 12px;
}

.product-category{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.product-details-content h1{
    font-size:36px;
    margin:10px 0 15px;
    line-height:1.3;
}

.product-rating{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.stars{
    color:#ffc107;
    font-size:16px;
}

.product-rating span{
    color:#666;
    font-size: 13px;
}

.product-description{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.product-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:30px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-family: 'Outfit', sans-serif !important;
}

.highlight-item i{
    color:#198754;
}

.action-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.dropdown-box{
    position:relative;
}

.action-btn{
    border: none;
  padding: 4px 18px 4px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif !important;
}

.catalog-btn{
    background: #fff;
  color: #0c4a6e;
  border: 1px solid #0c4a6e;
}

.quote-btn{
   background: #0c4a6e;
  color: #fff;
}

.dropdown-content{
    position:absolute;
    top:110%;
    left:0;
    width:360px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:100;
    border-radius: 4px;
}

.dropdown-box.active .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-content a{
    display:block;
    padding: 8px 12px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    font-size: 13px;
  font-weight: 600;
}

.dropdown-content a:hover{
    background:#f8f9fa;
}

.quote-form form{
    padding:20px;
}

.quote-form input,
.quote-form textarea{
    width: 100%;
  border: 1px solid #ddd;
  padding: 5px 8px;
  margin-bottom: 12px;
  outline: none;
  font-size: 12px;
  border-radius: 4px;
    
}

.quote-form textarea{
    height:100px;
    resize:none;
}

.quote-form button{
    width: 100%;
  border: none;
  background: #06b1d0;
  color: #fff;
  padding: 9px 18px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600;
}

.specification-table,
.details-features,
.details-application{
    margin-top:40px;
}

.specification-table h5,
.details-features h5,
.details-application h5{
   font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #06b0cf;
  font-family: 'Outfit', sans-serif !important;
}

.product-spec-table{
    width:100%;
    border-collapse:collapse;
}

.product-spec-table tr:nth-child(even){
    background:#f8f9fa;
}

.product-spec-table td{
    padding: 9px 13px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

.product-spec-table td:first-child{
    width:35%;
    font-weight:600;
    background:#f5f7fb;
    font-family: 'Outfit', sans-serif !important;
}

/* Features */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature-item{
  padding: 10px 10px;
  background: #f6f6f6;
  border-left: 2px dotted #0c4a6e;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.feature-item i{
    color:#28a745;
}

/* Applications */

.application-intro{
    margin-bottom:25px;
    color:#666;
    line-height:1.8;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.application-card{
    padding:25px;
    background:#fff;
    border:1px solid #e5e5e5;
    transition:.3s;
    border-radius: 4px;
}

.application-card:hover{
    /* transform:translateY(-5px); */
    /* box-shadow:0 10px 25px rgba(0,0,0,.08); */
}

.application-card i{
    font-size:32px;
    color:#dcdee0;
    margin-bottom:15px;
}

.application-card h6{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    font-family: 'Outfit', sans-serif !important;
}

.application-card p{
    color:#666;
    line-height:1.7;
    margin:0;
    font-size: 13px;
  font-weight: 500;
}

@media(max-width:991px){

    .feature-grid{
        grid-template-columns:1fr;
    }

    .application-grid{
        grid-template-columns:1fr;
    }

}

.related-product{
    padding:40px 0;
}

.related-title{
    margin-bottom:25px;
}

.related-title h3{
    font-size: 35px;
  color: rgb(0, 0, 0);
  font-family: 'Outfit', sans-serif !important;
}

.relatedProductSlider{
    padding:10px 0;
    position:relative;
}

.relatedProductSlider .swiper-slide{
    height:auto;
}

.relatedProductSlider .product-card{
    margin:0;
    display:flex;
    flex-direction:column;
    height:100%;
    box-sizing:border-box;
}

.relatedProductSlider .product-card .specs-center{
    flex:1;
}

.relatedProductSlider .product-card .buttonsect{
    margin-top:auto;
    padding-top:10px;
}

.relatedProductSlider .swiper-button-next,
.relatedProductSlider .swiper-button-prev{
    width:38px;
    height:38px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:50%;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    top:35%;
}

.relatedProductSlider .swiper-button-next:after,
.relatedProductSlider .swiper-button-prev:after{
    font-size:14px;
    font-weight:700;
    color:#0a5ca8;
}


.product-faq{
    max-width:100%;
    margin:50px 0;
}

.faq-header{
    text-align:center;
    margin-bottom:35px;
}

.faq-header h3{
    font-size: 35px;
  color: rgb(0, 0, 0);
  font-family: 'Outfit', sans-serif !important;
}

.faq-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #e6edf5;
    margin-bottom:15px;
    overflow:hidden;
    transition:.4s;
    border-radius: 8px;
}

.faq-item.active{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-color:#0ea5e9;
}

.faq-question{
    padding:20px 25px;
    font-size:18px;
    font-weight:600;
    color:#0d2d62;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family: 'Outfit', sans-serif !important;
}

.faq-question span{
    font-size:30px;
    color:#0ea5e9;
    transition:.3s;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#555;
    line-height:1.8;
    margin:0;
}

.faq-item.active .faq-answer{
    max-height:1000px;
}

/* ----------------Compare */
.compare-floating-bar{
    position:fixed;
    bottom:20px;
    right:20px;
   background: #0C4A6E;
  background: linear-gradient(91deg,rgba(12, 74, 110, 1) 35%, rgba(6, 182, 212, 1) 100%);
    color:#fff;
   padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
  transform: translateY(150%);
  transition: .3s;
  border-radius: 30px 30px 0 30px;
}
.tableproduct-name{
    color: #1a1a1a;
}
.compare-floating-bar.show{
    transform:translateY(0);
}

.compare-info{
    font-weight:600;
    white-space:nowrap;
    font-family: 'Outfit', sans-serif !important;
}

.compare-count{
    background:#fff;
    color:#0b5ed7;
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:5px;
}

.compare-products-list{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    max-width:250px;
}

.compare-product-tag{
    background:rgba(255,255,255,.15);
    padding:6px 10px;
    font-size:13px;
    font-family: 'Outfit', sans-serif !important;
}

.compare-page-btn{
    background: #fff;
  color: #0b5ed7;
  text-decoration: none;
  padding: 4px 10px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}

.compare-page-btn.disabled{
    opacity:.5;
    pointer-events:none;
}

.scitemp-compare-btn.active{
    background:#6daed5;
    color:#fff;
}
/* --------------Compare product page */
.compare-table-wrapper{
    overflow-x:auto;
    width:100%;
    border:1px solid #e5e5e5;
}

.compare-product-table{
    width:100%;
    min-width:1400px;
    border-collapse:collapse;
    background:#fff;
}

.compare-product-table th,
.compare-product-table td{
    border:1px solid #e5e5e5;
    padding:10px;
    text-align:center;
    font-size: 14px;
}

.compare-product-table th{
    background:#fff;
    min-width:300px;
    position:relative;
  font-family: 'Outfit', sans-serif !important;
}

.compare-product-table th img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 15px auto;
    display: block;
    max-width: 100px;
}

.compare-product-table th h4{
    font-size: 18px;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif !important;
  color: #023252;
}

.compare-product-table td{
    min-width:300px;
}

.compare-product-table tbody tr:nth-child(even){
    background:#f8fbfd;
}

.compare-product-table tbody td:first-child{
    font-weight: 600;
  font-family: 'Outfit', sans-serif !important;
}

.sticky-col{
    position:sticky;
    left:0;
    background:#fff;
    z-index:5;
    min-width:100px !important;
    text-align:left !important;

}

.sticky-top{
    position:sticky;
    top:0;
    background:#fff;
    z-index:10;
}

thead .sticky-col{
    z-index:20;
}

.compare-quote-btn{
    display: inline-block;
  padding: 2px 11px;
  background: #00b5e2;
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px;
}

.remove-product{
    position:absolute;
    top:10px;
    right:10px;
    border:none;
    background:none;
    font-size:18px;
    cursor:pointer;
    color:#dc3545;
}

@media(max-width:991px){

    .compare-product-table{
        min-width:1300px;
    }

}

/* ---------------contact us */
.contact-info-box,
.contact-form-box{
    background:#fff;
    padding:40px;
    height:100%;
    border:1px solid #e5e5e5;
    border-radius: 8px;
}

.contact-tag{
    display:inline-block;
    padding:8px 15px;
    background:#f2f7ff;
    color:#0056b3;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
}

.contact-info-box h2{
    font-size: 25px;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif !important
}

.contact-info-box p{
    color:#666;
    line-height:1.8;
}

/* .contact-item{
    display:flex;
    gap:18px;
    margin-top:25px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#0056b3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-item h5{
    margin-bottom:5px;
} */

.social-contact{
    margin-top:30px;
    display:flex;
    gap:10px;
}

.social-contact a{
    width:45px;
    height:45px;
    background: #0C4A6E;
    background: linear-gradient(91deg,rgba(12, 74, 110, 1) 35%, rgba(6, 182, 212, 1) 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
    border-radius: 4px;
}

.social-contact a:hover{
    transform:translateY(-4px);
}

.contact-form-box h3{
    font-size: 25px;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif !important
}

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

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #ddd;
    padding:6px 12px;
    outline:none;
    font-size: 13px;    
    border-radius: 4px;
}

.contact-btn{
    background:#0c4a6e;
    color:#fff;
    border:none;
   padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  border-radius: 4px;;
}

.contact-map{
    margin-top:50px;
}

.map-title{
    text-align:center;
    margin-bottom:25px;
}

.contact-map iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius: 8px;
}

.sc-contact-cta{
    margin-top:40px;
    background: #0C4A6E;
    background: linear-gradient(91deg,rgba(12, 74, 110, 1) 35%, rgba(6, 182, 212, 1) 100%);
    color:#fff;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    border-radius: 8px;
}
.sc-contact-cta p{
    color: #fff;
    font-size: 13px;
}
.cta-btn{
    background:#fff;
    color:#0099cc;
      padding: 6px 12px;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
    font-size: 14px;
    border-radius: 4px;
}

@media(max-width:991px){

    .sc-contact-info{
        margin-bottom:30px;
    }

    .sc-contact-cta{
        flex-direction:column;
        text-align:center;
    }

}
.nonfloatcontact .contact_sci a{
    color: #666;
}
.nonfloatcontact .contact_sci .adsci span, .nonfloatcontact .contact_sci .emailsci span, .nonfloatcontact .contact_sci .phsci span, .nonfloatcontact .contact_sci .whsci span{
    font-weight: 600;
    color: #111;
}
.nonfloatcontact .contact_sci .adsci::before{
   content: '\F3E8';
   font-family: 'Bootstrap-Icons';
   margin-right: 5px;
   font-size: 20px;
   position: relative;
  top: 5px;
}
.nonfloatcontact .contact_sci .emailsci::before{
   content: '\F32F';
   font-family: 'Bootstrap-Icons';
   margin-right: 5px;
   font-size: 20px;
   position: relative;
  top: 5px;
}
.nonfloatcontact .contact_sci .phsci::before{
   content: '\F4E7';
   font-family: 'Bootstrap-Icons';
   margin-right: 5px;
   font-size: 20px;
   position: relative;
  top: 5px;
}
.nonfloatcontact .contact_sci .whsci::before{
   content: '\F618';
   font-family: 'Bootstrap-Icons';
   margin-right: 5px;
   font-size: 20px;
   position: relative;
  top: 5px;
}

.product-search-wrapper{
    position:relative;
}

.product-suggestions{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    max-height:250px;
    overflow-y:auto;
    display:none;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.product-suggestions.show{
    display:block;
}

.product-suggestions div{
    padding:12px 15px;
    cursor:pointer;
    border-bottom:1px solid #f1f1f1;
    transition:.3s;
    padding: 9px 12px;
    font-size: 12px;
}

.product-suggestions div:hover{
    background:#f5f8ff;
    color:#0056b3;
}

.product-suggestions div:last-child{
    border-bottom:none;
}
/* ---------------error */
.error-body{
    background-image: url(../images/404.jpg);
}
.scitemp-error-content{
    text-align:center;
    max-width:800px;
    margin:auto;
    padding:100px 20px;
}

.error-tag{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(8px);
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.scitemp-error-content h2{
    font-size:54px;
    font-weight:500;
    margin-bottom:20px;
    font-family: "Russo One", sans-serif;
}

.scitemp-error-content p{
    font-size: 15px;
    line-height:1.8;
    max-width:700px;
    margin:auto auto 35px;
}

.error-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.home-btn,
.product-btn{
    padding: 6px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  font-size: 15px;
  border-radius: 4px;
}

.home-btn{
    background:#0056b3;
    color:#fff;
}

.product-btn{
    border:2px solid #0056b3;
    color:#0056b3;
}

.home-btn:hover,
.product-btn:hover{
    transform:translateY(-3px);
}

.error-links{
    margin-top:40px;
}

.error-links span{
    display:block;
    margin-bottom:15px;
    font-weight:600;
}

.error-links a{
    display:inline-block;
    margin:5px;
    padding:8px 15px;
    background:#f4f6f8;
    text-decoration:none;
    color:#333;
    transition:.3s;
    font-size: 12px;
    border-radius: 4px;
}

.error-links a:hover{
    background:#0056b3;
    color:#fff;
}
/* ---------------FAQ */
.scitemp-faq-wrapper{
    width:100%;
    /* max-width:1200px; */
    margin:auto;
}

.scitemp-faq-intro{
    text-align:center;
    margin-bottom:40px;
}

.scitemp-faq-intro h2{
    font-size:34px;
    margin-bottom:15px;
    color:#0b1f3a;
}

.scitemp-faq-intro p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.scitemp-faq-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.scitemp-faq-item{
    border:1px solid #e6e6e6;
    background:#fff;
    overflow:hidden;
    transition:.4s;
    border-radius: 8px;
}

.scitemp-faq-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.scitemp-faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding: 12px 20px;
    text-align:left;
    font-size:17px;
    font-weight:500;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family: 'Outfit', sans-serif !important;
}

.scitemp-faq-question span{
    font-size:24px;
    transition:.3s;
    color:#0056d2;
}

.scitemp-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.scitemp-faq-answer p{
    padding:0 25px 25px;
    margin:0;
    color:#555;
    line-height:1.8;
}

.scitemp-faq-item.active{
    border-color:#06b1d0;
}

.scitemp-faq-item.active .scitemp-faq-question{
    color:#06b1d0;
}

.scitemp-faq-item.active .scitemp-faq-question span{
    transform:rotate(45deg);
}

.scitemp-faq-item.active .scitemp-faq-answer{
    max-height:2000px;
}

@media(max-width:768px){

    .scitemp-faq-question{
        font-size:15px;
        padding:18px;
    }

    .scitemp-faq-intro h2{
        font-size:28px;
    }
}
/* ---------------Privacy Policy */

.privacy-policy-content{
    width:100%;
}

.policy-card{
    background:#fff;
    border:1px solid #e5e5e5;
    padding:30px;
    margin-bottom:25px;
    border-radius: 8px;
}

.policy-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.policy-card h3{
    margin-bottom:15px;
    color:#003366;
    font-size:22px;
    font-family: 'Outfit', sans-serif !important;
}

.policy-card p{
    color:#555;
    line-height:1.8;
}

.policy-card ul{
    margin-top:15px;
    padding-left:20px;
}

.policy-card ul li{
    margin-bottom:10px;
    color:#555;
    font-size: 14px;
}

.policy-contact{
    background:#003366;
    color:#fff;
    padding:40px;
    text-align:center;
    margin-top:20px;
}

.policy-contact h3{
    margin-bottom:15px;
    color:#fff;
}

.policy-contact p{
    color:#f5f5f5;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}
/* ---------------------Site map */
.mainhead .sitemaphead{
    margin: 50px 0px;
  font-size: 35px;
  color: rgb(0, 0, 0);
  font-family: 'Outfit', sans-serif !important;
}

/* ===========================
   Sitemap Section
=========================== */

.sitemap{
    /* max-width:1400px;
    margin:60px auto;
    padding:30px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08); */
    overflow-x:auto;
}

.sitemap ul{
    list-style:none;
    margin:0;
    padding-left:35px;
    position:relative;
}

.sitemap li{
    position:relative;
    padding:10px 0 10px 25px;
}

/* Vertical Branch */

.sitemap li::before{

    content:"";

    position:absolute;

    left:0;

    top:-10px;

    width:2px;

    height:100%;

    background:#0C4A6E;

}

/* Horizontal Branch */

.sitemap li::after{

    content:"";

    position:absolute;

    left:0;

    top:30px;

    width:26px;

    height:2px;

    background:#0C4A6E;

}

/* Remove extra line for last child */

.sitemap li:last-child::before{

    height:40px;

}

/* Root */

.sitemap>ul{

    padding-left:0;

}

.sitemap>ul>li{

    padding-left:0;

}

.sitemap>ul>li::before,

.sitemap>ul>li::after{

    display:none;

}

/* ===========================
   Heading Styles
=========================== */

.sitemap h2,
.sitemap h3,
.sitemap h4{

    margin:0;

    font-weight:600;

}

.sitemap h2{

    margin-bottom:25px;

    font-size:30px;

}

.sitemap h3{

    font-size:20px;

}

.sitemap h4{

    font-size:16px;

    font-weight:500;

}

/* ===========================
   Links
=========================== */

.sitemap a{

    display:inline-block;

    text-decoration:none;

    color:#333;

    padding:10px 18px;

    background:#fff;

    border:1px solid #d9e3ea;

    border-radius: 4px;
  transition: .3s;
  position: relative;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px;

}

.sitemap h2>a{

    background:linear-gradient(135deg,#003050,#6dadd5);

    color:#fff;

    border:none;

}
.sitemap h2>a:before{
  content: "";
  position: absolute;
  left: 0;
  top: 39px;
  width: 2px;
  height: 100%;
  background: #0C4A6E;
  max-height: 42px;
  right: 0;
  margin: auto;
}
.sitemap h2>a:after{
    /* content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 20px;
  height: 2px;
  background: #0C4A6E; */
}

.sitemap h3>a{

    background:#0C4A6E;

    color:#fff;

    border:none;

}

.sitemap h4>a{

    background:#f7fbff;

    color:#444;

}

.sitemap a:hover{

    /* transform:translateX(6px); */

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.sitemap h4 a:hover{

    background:#6DADD5;

    color:#fff;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.sitemap{

    padding:20px;

}

.sitemap ul{

    padding-left:25px;

}

.sitemap h2{

    font-size:24px;

}

.sitemap h3{

    font-size:18px;

}

.sitemap h4{

    font-size:15px;

}

.sitemap a{

    padding:8px 14px;

}

}
/* .sitemap-tree-wrap{
    background:#fff;
   
}

.sitemap-tree-wrap h2{
    margin-bottom:10px;
    font-size:32px;
    font-weight:700;
}

.sitemap-tree-wrap p{
    margin-bottom:35px;
    color:#666;
}

.tree,
.tree ul{
    list-style:none;
    margin:0;
    padding-left: 0px;
    position:relative;
    margin-left: 30px;
}

.tree ul::before{
    content:"";
    position:absolute;
    top:0;
    left:8px;
    width:2px;
    height:100%;
    background:#d9d9d9;
}

.tree li{
    position:relative;
    padding:10px 0 10px 43px;
}

.tree li::before{
    content:"";
    position:absolute;
    top:30px;
    left:8px;
    width:35px;
    height:2px;
    background:#d9d9d9;
}

.tree span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background: #06b3d2;
  padding: 10px 16px;
  border-left: 4px solid #000;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif !important;
}

.tree a{
    text-decoration:none;
    color:#444;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    border-left: 3px solid #e1e1e1;
    padding-left: 8px;
}

.tree a:hover{
    color:#000;
    padding-left:5px;
}

.tree > li > span{
    background:#0c4a6e;
    color:#fff;
    font-size:18px;
    font-family: 'Outfit', sans-serif !important;
}

.tree > li > span i{
    color:#fff;
} */
/* --------------------terms and conditions */

.terms-wrapper{
    margin:auto;
}

.terms-intro{
    text-align:center;
    margin-bottom:40px;
}

.terms-intro h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.terms-intro p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.terms-card{
    background:#fff;
    border:1px solid #e9ecef;
    padding:25px;
    margin-bottom:20px;
    border-radius: 8px;
}

.terms-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.terms-card h3{
   margin-bottom: 15px;
  color: #003366;
  font-size: 22px;
  font-family: 'Outfit', sans-serif !important;
}

.terms-card p{
    color:#555;
    line-height:1.8;
    margin:0;
}

.terms-highlight{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#f8f9fa;
    border-left:5px solid #0d6efd;
    padding:25px;
    margin-top:30px;
}

.terms-highlight i{
    font-size:40px;
    color:#0d6efd;
}

.terms-highlight h4{
    margin-bottom:10px;
    font-weight:700;
}

.terms-highlight p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .terms-intro h2{
        font-size:28px;
    }

    .terms-card{
        padding:20px;
    }

    .terms-highlight{
        flex-direction:column;
    }

}

/* -----------------------Thank You */

.thankyou-wrapper{
    text-align:center;
    margin:auto;
    padding:60px 40px;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.thankyou-icon{
    margin-bottom:20px;
}

.thankyou-icon i{
    font-size:90px;
    color:#16a34a;
}

.thankyou-wrapper h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
     font-family: "Courgette", cursive;
}

.thankyou-wrapper h3{
    font-size:24px;
    margin-bottom:20px;
    color:#0f172a;
}

.thankyou-wrapper p{
    color:#64748b;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;
}

.thankyou-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}

.info-card{
    padding:25px;
    border:1px solid #e5e7eb;
    border-radius: 4px;
}

.info-card h4{
    font-size:18px;
    margin-bottom:10px;
    color: #0c4a6e;
    font-family: 'Outfit', sans-serif !important;
}

.info-card p{
    margin:0;
    font-size:14px;
}

.thankyou-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.home-btn,
.product-btn{
    padding: 5px 16px 4px;
    text-decoration:none;
    font-weight:600;
    font-family: 'Outfit', sans-serif !important;
}

.home-btn-tu{
    background:#0056b3;
    border: 2px solid #0056b3;
    color: #fff !important;
    padding: 2px 12px 3px !important;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif !important;
}

.product-btn-tu{
    border: 2px solid #0056b3;
    color: #0056b3 !important;
    background: #fff !important;
    padding: 2px 12px 3px !important;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif !important;
}



.thankyou-related{
    margin-top:70px;
}

.thankyou-related h3{
    text-align:center;
    margin-bottom:35px;
    font-size:32px;
    font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}

.related-card{
    display:flex;
    justify-content: space-between;
    text-decoration:none;
    background:#fff;
    border:1px solid #e5e7eb;
    padding: 16px 20px;
    height:100%;
    position: relative;
    border-radius: 4px;
}
.related-card img{
    width: 100px;
    height: 100px;
}
.related-card h4{
    color:#111827;
    margin-bottom:10px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.related-card span{
    color:#0056b3;
    font-weight:500;
    font-size: 13px;
    position: absolute;
    right: 14px;
    bottom: 12px;
}
.scitemp-promo-banner-sc:nth-child(1) {
  background-image: url(../images/banp1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.scitemp-promo-banner-sc:nth-child(2) {
  background-image: url(../images/banp2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media(max-width:991px){

    .thankyou-info{
        grid-template-columns:1fr;
    }

    .thankyou-wrapper h2{
        font-size:38px;
    }

}

/* ---------------------Responsive */
@media (max-width:768px){
    .search-container{
        margin-top: 5px;
    }
}
@media (min-width: 991px){
    .no-desktop{
        display: none !important;
    }
}
@media (max-width: 991px){
    .navbar-menu{
        display: none;
    }
    .logo h2 {
        font-size: 23px;
        margin-bottom: 0;
    }
    .logo {
        display: flex !important;
        align-items: center !important;
        height: 40px !important;
    }
    .header-icon {
        font-size: 12px;
    }
    .announcement-item {
        margin-right: 35px;
        font-size: 12px;
    }
    .contact-item span{
        display: none;
    }
    .contact-slider {
        width: 22px;
        height: 22px;
    }

    .header-right {
        gap: 8px;
    }
    .search-box input {
        font-size: 12px;
    }
    .banner-section{
        display: none;
    }
    .home-titles h1, .home-titles h2, .home-titles h3, .home-titles h4, .home-titles h5, .home-titles h6 {
        text-align: center;
        font-size: 26px;
    }
    .category-thumb {
        width: 100px;
        height: 100px;
    }
    .category-card h3 {
        font-size: 15px;
    }
    .category-card p {
        font-size: 10px;
    }
    .scitemp-promo-banner {
        padding: 25px 9px;
    }
    .promo-thumb {
        width: 440px;
        display: ruby;
    }
    .promo-thumb span {
        font-size: 15px;
    }
    .promo-main-content {
         padding: 18px;
         width: 100%;
    }
    .promo-btns {
        justify-content: center;
    }
    .promo-image-area img {
        max-width: 150px;
    }
    .promo-content-area h2 {
        font-size: 20px;
    }   
    .promo-rating span {
        font-size: 13px;
    }
    #typedText {
        font-size: 12px;
        min-height: 90px;
    }
    .promo-catalog-btn, .promo-details-btn {
        font-size: 12px;
    }
    .scitemp-product-section {
        padding: 50px 20px;
        background: #fff;
    }
    .scitemp-product-title-area {
    display: block;
    }
    .scitemp-tab-btn {
        font-size: 15px;
    }
    .category-sidebar {
        margin-bottom: 12px;
        padding: 12px;
    }
    .promo-banner {
        margin-bottom: 12px;
    }
    .product-card {
        padding: 8px;
    }
    .product-card h4 {
    font-size: 15px;
    }
    .specs-center p span {
        font-size: 12px;
    }
    .scitemp-promo-banner-section {
        margin: 0 15px 60px;
    }
    .pp-product-card h4 {
        font-size: 16px;
    }
    .universla-title h1, .universla-title h2, .universla-title h3, .universla-title h4, .universla-title h5, .universla-title h6 {
     text-align: center;
     font-size: 28px;
    }
    .breadcrumb-sec {
        display: none;
    }
    .word-rotate-items span{
        font-size: 20px;    
    }
    .catalog-content h1, .catalog-content h2, .catalog-content h3, .catalog-content h4, .catalog-content h5, .catalog-content h6 {
        font-size: 15px;
    }
    .catalog-content span {
        font-size: 12px;
    }
    .catalog-card img {
        width: 100%;
        height: 120px;
        max-width: 120px;
        margin: 12px auto;
    }
    .catalog-card{
        text-align: center;
    }
    .allproduct-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .allp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .allproduct-grid .product-card h4 {
        font-size: 15px;
    }
    .allp-product-grid .product-card h4 {
        font-size: 15px;
    }
    .allproduct-grid .product-card .specs-center p span {
        font-size: 12px;
    }
    .allp-product-grid .product-card .specs-center p span {
        font-size: 12px;
    }
    .main-scitemp-section {
        padding-top: 0;
    }
    .custbtn {
        font-size: 13px !important;
    }
     .custbtn.active {
        font-size: 13px !important;
    }
    .custbtn{
        width: auto;
    }
    .imagesection {
        width: 120px;
        height: 120px;
    }
    .sc-category-card a {
        font-size: 12px;
    }
    .category-container {
        grid-template-columns: 1fr;
    }
    .category-sidebar ul {
        display: flex;
        flex-flow: wrap;
        width: 100%;
    }
    .category-sidebar li {
        width: auto;
    }
    .category-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .category-image {
        width: 150px;
        height: 150px;
    }
    .no-mobile{
        display: none;
    }
}
@media (max-width: 576px){
    .allproduct-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .allp-product-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .allp-product-grid .product-card {
        min-height: auto;
    }
    .allp-product-grid .product-card .specs-center {
        min-height: 0;
    }
    .category-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .category-image {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 400px){
    .allproduct-grid .product-card .buttonsect {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .allp-product-grid .product-card .buttonsect {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
@media (max-width: 375px){
    .buttonsect {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .allproduct-grid {
        grid-template-columns: repeat(1,1fr);
    }
    .allp-product-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
}
.offfilter{
    top: 41% !important;
    height: 350px;
    width: 250px !important;
    border: 1px solid #e1e1e1;
    border-radius: 0 8px 8px 0 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.filterclose{
    right: 0;
    position: absolute;
    top: 0px;
    background-color: #ffc8c8 !important;
    color: #fff !important;
    font-size: 15px;
    margin: 2px;
}
.btn.filter-btnsc {
  margin-left: auto;
  display: block;
  font-size: 14px;
  border: 1px solid #0c4a6e;
  background-color: #0c4a6e;
  color: #fff;
  padding: 2px 12px;
}
/* -------------------Gallery */
.gallery-intro{
    text-align:center;
    margin-bottom:40px;
}

.gallery-intro h2{
    font-size:34px;
    margin-bottom:15px;
}

.gallery-intro p{
    max-width:900px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.gallery-filter{
    display:flex;
    justify-content: left;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.gallery-btn{
    border:none;
    padding: 6px 20px;
    background: #6dadd5;
    cursor: pointer;
    transition: .3s;
    border-radius: 4px;
    color: #fff;
}

.gallery-btn.active,
.gallery-btn:hover{
    background:#013051;
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap: 5px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
}

.gallery-item img{
    width: 100%;
  height: 280px;
  max-width: 280px;
  object-fit: cover;
  transition: .5s;
  margin: 0 auto;
  display: block;
}

.gallery-item:hover img{
    /* transform:scale(1.1); */
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.41);
    display:flex;
    flex-direction:column;
    justify-content: end;
    align-items:center;
    text-align:center;
    color:#fff;
    opacity:0;
    transition:.4s;
    padding:20px;
    border-radius: 2px;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h4,
.gallery-overlay h3{
    margin-bottom:10px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px;
}

.sc-gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.sc-gallery-lightbox.show{
    display:flex;
}

.sc-gallery-lightbox img{
    max-width:90%;
    max-height:85vh;
    margin: auto;
  display: block;
}

.gallery-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}
/* ---------------------Blogs */
.blog-intro{
    text-align:center;
    margin-bottom:40px;
}

.blog-intro h2{
    font-size:34px;
    font-weight:700;
    color:#0f2b5b;
    margin-bottom:15px;
}

.blog-intro p{
    max-width:900px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.blog-search-box{
    position:relative;
    margin-bottom:40px;
}

.blog-search-box input{
    width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  padding: 0 60px 0 20px;
  border-radius: 4px;
  max-width: 400px;
  font-size: 14px;
  margin: 0 auto;
  display: block;
}

.blog-search-box i{
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    color:#00b5e2;
}

.featured-blog{
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:50px;
    padding:30px;
    border-radius:12px;
    background:#f7fbff;
    border:1px solid #e7eef8;
}

.featured-image{
    width:40%;
}

.featured-image img{
    width:100%;
    border-radius:10px;
}

.featured-content{
    width:60%;
}

.blog-badge{
    background:#00b5e2;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
}

.featured-content h3{
    margin:20px 0;
    color:#0f2b5b;
}

.read-more-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#00b5e2;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:5px;
}

.blog-card{
    background:#fff;
    border-radius:2px;
    overflow:hidden;
    border: 1px solid #e5e5e5;
    /* transition:.3s; */
}

.blog-card:hover{
    /* transform:translateY(-6px); */
}

.blog-img img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-content{
    padding:20px;
}

.category{
    background: #eaf9fd;
  color: #0c4a6e;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif !important;
}

.blog-content h4{
    margin:15px 0;
    color:#0f2b5b;
    font-size:20px;
    font-family: 'Outfit', sans-serif !important;
}

.blog-content p{
    color:#666;
    line-height:1.7;
}

.blog-content a{
    color:#00b5e2;
    text-decoration:none;
    font-weight:500;
    font-family: 'Outfit', sans-serif !important;
}

.blog-sidebar{
    position:sticky;
    top:20px;
}

.sidebar-widget{
    background:#fff;
    padding:25px;
    margin-bottom:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.sidebar-widget h3{
    color:#0f2b5b;
    margin-bottom:20px;
}

.sidebar-widget ul{
    list-style:none;
    padding:0;
}

.sidebar-widget ul li{
    margin-bottom:12px;
}

.sidebar-widget ul li a{
    text-decoration:none;
    color:#555;
}

.newsletter-box input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    padding:10px;
    margin:15px 0;
    border-radius:6px;
}

.newsletter-box button{
    width:100%;
    height:50px;
    border:none;
    background:#00b5e2;
    color:#fff;
    border-radius:6px;
}

@media(max-width:991px){

    .featured-blog{
        flex-direction:column;
    }

    .featured-image,
    .featured-content{
        width:100%;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }
}
/* ----------------Blog details */
.blog-details-content{
    padding: 0 200px;
}

.blog-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:25px;
    color:#666;
    font-size:14px;
}

.blog-details-content h2{
    margin:35px 0 15px;
    font-size: 24px;
    color:#0b4d85;
    font-family: 'Outfit', sans-serif !important;
  font-weight: 500;
}

.blog-details-content h4{
    font-size: 16px;
  color: #06b1cf;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 400;
  margin-bottom: 5px;
}

.blog-details-content p{
    line-height:1.9;
    color:#555;
    text-align: justify;
}

.blog-details-content ul{
   padding-left: 12px;
   list-style: circle;
}

.blog-details-content li{
    margin-bottom:10px;
    font-size: 14px;
}

.blog-image-block{
    margin:30px 0;
    text-align:center;
}

.blog-image-block img{
    width:100%;
    max-width:700px;
}

.img-caption{
    margin-top:10px;
    color:#777;
    font-size:14px;
}

.blog-table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

.blog-table th{
    background:#0b4d85;
    color:#fff;
    font-family: 'Outfit', sans-serif !important;
}

.blog-table th,
.blog-table td{
    padding: 8px;
  border: 1px solid #ddd;
  font-size: 13px;
}

.benefit-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:25px 0;
}

.benefit-box div{
    background:#f7fbff;
    border-left:4px solid #0b4d85;
    padding: 8px;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif !important;
}

.sidebar-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:25px;
    margin-bottom:25px;
}

.sidebar-card h3{
    margin-bottom:15px;
    color:#0b4d85;
}

.sidebar-card ul{
    list-style:none;
    padding:0;
}

.sidebar-card li{
    margin-bottom:12px;
}

.sidebar-card a{
    text-decoration:none;
    color:#333;
}

.blog-faq-section{
    margin-top:60px;
}

.blog-faq-section h2{
    margin-bottom:20px;
}

.blog-faq-item{
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:15px;
}

.blog-faq-question{
    width:100%;
    text-align:left;
    border:none;
    padding: 12px 12px;
    background:#f8f9fa;
    cursor:pointer;
    font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}

.blog-faq-answer{
    display:none;
    padding:20px;
    background:#fff;
}
.blogimg{
    width: 100%;
}
.blogimg img{
    width: 100%;
}
@media (max-width: 991px){
    .blog-details-content {
  padding: 0 40px;
}
}
/* -------------------populat blogs on home page */
.popular-blogs {
  background-color: #f8f8f8;
  padding: 30px 0 60px;
}
.blog-slider-wrapper{
    overflow:hidden;
    cursor:grab;
    user-select:none;
    position:relative;
}

.blog-slider-wrapper:active{
    cursor:grabbing;
}

.blog-track{
    display:flex;
    gap: 9px;
    transition:transform .15s linear;
}

.blog-card-pp{
    flex:0 0 calc(33.333% - 6px);
    background:#fff;
    border:1px solid #e5e5e5;
    overflow:hidden;
    border-radius: 2px;
}

.blog-image-pp{
    height:240px;
}

.blog-image-pp img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-content-pp{
    padding:20px;
}

.blog-content-pp span{
    background: #eaf9fd;
  color: #0c4a6e;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif !important;
}

.blog-content-pp h3{
    margin: 15px 0;
  color: #0f2b5b;
  font-size: 20px;
  font-family: 'Outfit', sans-serif !important;
}

.blog-content-pp p{
    color: #666;
  line-height: 1.7;
  font-weight: 400;
  font-size: 14px;
}

.blog-content-pp a{
    color: #00b5e2;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}

.blog-track.dragging{
    transition:none;
}

/* Tablet */

@media(max-width:991px){

    .blog-card-pp{
        flex:0 0 calc(50% - 13px);
    }

}

/* Mobile */

@media(max-width:767px){

    .blog-card-pp{
        flex:0 0 100%;
    }

}
/* -------------Career */

.career-hero{
    text-align:center;
    margin-bottom:50px;
}

.career-hero h2{
    margin-bottom:20px;
}

.career-hero p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

.career-section{
    margin-bottom:20px;
}
.career-section h2{
    font-size: 20px;
    font-family: 'Outfit', sans-serif !important;
}
.career-benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap: 25px;
    margin-top: 20px;
}

.career-benefit-card{
    border:1px solid #e5e5e5;
    padding:30px;
    text-align:center;
    background-color: #06b3d10a;
}
.career-benefit-card h4{
    font-size: 18px;
    color: #0c4a6e;
    font-family: 'Outfit', sans-serif !important;
}
.career-benefit-card i{
    font-size:40px;
    margin-bottom:15px;
}

.career-jobs,
.career-culture,
.career-form-wrapper{
    border:1px solid #e5e5e5;
    padding:30px;
    margin-bottom:40px;
}
.career-form-wrapper h2{
    font-size: 20px;
    color: #0c4a6e;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif !important;
}
.career-jobs h2{
    font-size: 20px;
    color: #0c4a6e;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif !important;
}
.job-card{
    padding:20px;
    border:1px solid #eee;
    margin-bottom:15px;
}

.job-card h4{
    margin-bottom:10px;
    font-size: 18px;
    color: #06b3d1;
    font-family: 'Outfit', sans-serif !important;
}
.job-card p{
    margin-bottom: 5px;
}
.job-card span{
    font-size: 13px;
      color: #9b9b9b;
}
.career-culture ul{
    padding-left:20px;
}

.career-culture li{
    margin-bottom:12px;
}

.career-form-wrapper input,
.career-form-wrapper select,
.career-form-wrapper textarea{
    width: 100%;
  padding: 6px 12px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  font-size: 13px;
  border-radius: 2px;
}

.resume-upload{
    display: block;
  padding: 10px;
  border: 2px dashed #ccc;
  text-align: center;
  cursor: pointer;
  margin-bottom: 22px;
}

.resume-upload input{
    display:none;
}

.career-btn{
    border: none;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #0c4a6e;
  color: #fff;
  font-family: 'Outfit', sans-serif !important;
}

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

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:25px;
}

.related-card{
    border:1px solid #e5e5e5;
    padding:30px;
    text-align:center;
    text-decoration:none;
    color:#222;
}

.related-card i{
    font-size:35px;
    display:block;
    margin-bottom:15px;
}

@media(max-width:991px){

    .career-benefits{
        grid-template-columns:repeat(2,1fr);
    }

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .career-benefits,
    .related-grid{
        grid-template-columns:1fr;
    }
}
/* ----------------Newsletter */
.scitemp-newsletter{
    padding:18px 0;
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.newsletter-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:200px;
}

.newsletter-left{
    display:flex;
    align-items:center;
    gap:22px;
    min-width:420px;
}

.newsletter-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 30px;
    color: #0c4a6e;
    transition: color .25s ease;
    cursor: pointer;
    text-decoration: none;
}

.newsletter-icon:hover{
    color: #0e6a9e;
}

.newsletter-success{
    margin: 8px 0 0;
    color: #16a34a;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-content h3{
    font-size:20px;
    font-weight: 500;
  color: #1b2430;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif !important;
}

.newsletter-content p{
    margin:0;
    color:#8b95a5;
    font-size:15px;
    line-height:1.6;
    font-family: 'Outfit', sans-serif !important;
}

.newsletter-right{
    flex:1;
}

.newsletter-right form{
    display:flex;
    align-items:center;
    width:100%;
}

.newsletter-right input{
    flex: 1;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-right: none;
  padding: 0 18px;
  font-size: 13px;
  outline: none;
  border-radius: 4px;
}

.newsletter-right input::placeholder{
    color:#9ca3af;
}

.newsletter-right button{
    width: auto;
    padding: 0 22px;
    height: 40px;
    border: none;
    background: #0c4a6e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
    border-radius: 0 4px 4px 0;
    font-family: 'Outfit', sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.newsletter-right button:hover{
    background: #0e6a9e;
    transform: translateX(2px);
}

@media(max-width:991px){

    .newsletter-wrapper{
        flex-direction:column;
        align-items:flex-start;
        gap: 16px;
    }

    .newsletter-left{
        min-width:100%;
    }

    .newsletter-right{
        width:100%;
    }

    .newsletter-right form{
        /* flex-direction:column;
        gap:12px; */
    }

    .newsletter-right input{
        width:100%;
        border-right:1px solid #d8d8d8;
    }

    .newsletter-right button{
        /* width:100%; */
    }
}

@media(max-width:576px){

    .newsletter-left{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .newsletter-content h3{
        font-size:18px;
    }

    .newsletter-content p{
        font-size:14px;
    }
}
/* -------------------Terms & Conditions */
.terms-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.terms-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0c2d4e;
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0f5;
}

.terms-p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 8px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 14px 18px;
    border-left: 3px solid #0c4a6e;
    background: #f8fbfd;
    border-radius: 0 6px 6px 0;
}

.terms-list li span {
    font-weight: 700;
    color: #0c2d4e;
    margin-right: 4px;
}

.terms-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0 60px;
    max-width: 860px;
    margin: 0 auto;
}

.terms-card {
    background: #fff;
    border: 1px solid #e5edf3;
    border-left: 4px solid #0c4a6e;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
}

.terms-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0c2d4e;
    margin-bottom: 8px;
    margin-top: 8px;
}
.terms-card h3
 {
    font-size: 18px;
    font-weight: 500;
    color: #6dadd5;
    margin-bottom: 8px;
    margin-top: 8px;
}
.terms-card h4
 {
    font-size: 16px;
    font-weight: 400;
    color: #6dadd5;
    margin-bottom: 8px;
    margin-top: 8px;
}

.terms-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}
.terms-card .tcul{
    list-style: circle;
    padding-left: 12px;
}
.terms-card .tcul li{
  font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}
.terms-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #0c4a6e;
    border-radius: 8px;
    padding: 24px;
    margin-top: 6px;
}

.terms-highlight i {
    font-size: 26px;
    color: #06b0ce;
    flex-shrink: 0;
    margin-top: 4px;
}

.terms-highlight h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.terms-highlight p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.7;
}
/* -------------------Single catalog */
.catalog-download{
    text-align:center;
    margin-bottom:30px;
}

.download-catalog-btn{
    background: #0c4a6e;
    color: #fff;
    padding: 8px 16px;
    border-radius:4px;
    text-decoration:none;
    display:inline-flex;
    gap:10px;
    align-items:center;
    font-weight:600;
}

.catalog-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.catalog-page{
    width:210mm;
    min-height:297mm;
    background:#fff;
    box-shadow:0 0 25px rgba(0,0,0,.15);
    overflow:hidden;
    position:relative;
}

.cover-page{
    background:url('../images/sc1.png') center center/cover;
}

.catalog-overlay{
    min-height:297mm;
    /* background:rgba(0,25,55,.72); */
    padding:50px;
    color:#fff;
    text-align:center;
}

.catalog-logo img{
    width: 100%;
  max-width: 250px;
}

.catalog-product-image{
    margin: 83px 30px 0;
}

.catalog-product-image img{
    max-height:420px;
}

.catalog-cover-content h2{
    font-size: 40px;
  margin-bottom: 15px;
  color: #023252;
  font-family: 'Outfit', sans-serif !important;
}

.catalog-cover-content h3{
    font-size:26px;
    margin-bottom:20px;
    color: #06b3d1;
    font-family: 'Outfit', sans-serif !important;
}

.catalog-cover-content p{
    max-width: 330px;
  margin: 30px 0 auto;
  line-height: 1.8;
  text-align: justify;
  color: #000;
}
.catalog-cover-content {
  margin-top: 40px;
}
.catalog-contact{
    margin-top: 50px;
  position: absolute;
  bottom: 20px;
  text-align: center;
  display: flex;
  gap: 15px;
  left: 0;
  right: 0;
  width: 100%;
  justify-content: flex-start;
  padding: 0 50px;
}

.catalog-contact p a, .catalog-contact p i{
    /* margin-bottom:10px; */
    color: #fff;
    font-family: 'Outfit', sans-serif !important;
    display: flex;
  align-items: center;
  line-height: normal;
}
.catalog-contact p {
    margin-bottom:10px;
    color: #fff;
    font-family: 'Outfit', sans-serif !important;
    display: flex;
  align-items: center;
  line-height: normal;
}
.catalog-contact p i{
    margin-right: 5px;
}
.inner-page{
    padding:40px;
}

.page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid #0a6fc2;
    padding-bottom:15px;
    margin-bottom:30px;
}

.page-header img{
  height: 15px;
}

.page-header span{
    font-size:22px;
    font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}

.overview-section{
    display:flex;
    gap:30px;
    margin-bottom:40px;
}

.overview-image img{
    width:280px;
}

.overview-content{
    flex:1;
}

.overview-content span h2{
    margin-bottom:20px;
    font-family: 'Outfit', sans-serif !important;
}

.overview-content p{
    line-height:1.8;
}

.catalog-spec-table h1, .catalog-spec-table h2, .catalog-spec-table h3, .catalog-spec-table h4, .catalog-spec-table h5, .catalog-spec-table h6
.feature-section h1, .feature-section h2, .feature-section h3, .feature-section h4, .feature-section h5, .feature-section h6,
.application-section h1, .application-section h2, .application-section h3, .application-section h4, .application-section h5, .application-section h6{
    margin-bottom:15px;
      font-family: 'Outfit', sans-serif !important;
      font-size: 20px;
}

.catalog-spec-table table{
    width:100%;
    border-collapse:collapse;
}

.catalog-spec-table td{
    border:1px solid #d8d8d8;
    padding: 8px;
    font-size: 14px;
}

.catalog-spec-table td:first-child{
    font-weight:600;
    width:35%;
    background:#f5f7fa;
}

.feature-section ul{
    padding-left:20px;
}

.feature-section li{
    margin-bottom:12px;
    line-height:1.7;
      font-size: 14px;
}

.application-section{
    margin-top:30px;
      margin-bottom: 50px;
}

.application-section p{
    line-height:1.9;
}

.catalog-footer{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background: #ebeef0a1;
    color: #8b8989;
   display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 15px 20px;
}

.catalog-footer img{
    height: 18px;
}

.footer-contact{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    font-size: 12px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
}

@media(max-width:1200px){

    .catalog-page{
        width:100%;
        min-height:auto;
    }

    .overview-section{
        flex-direction:column;
    }

    .catalog-footer{
        position:relative;
        margin-top:40px;
    }

}
.catalog-logo {
  text-align: right;
  margin-bottom: 60px;
}
.catalog-logo h2{
    font-size: 40px;
    color: #0c4a6e;
}
.catalog-logo h2 span{
    color: #06b3d2;;
}
/* == Product Detail: section headings == */
.pd-section-title { font-size:1.15rem; font-weight:700; color:#1a1a2e; margin:1.6rem 0 0.4rem; padding-bottom:0.4rem; border-bottom:2px solid #0e849b; }
.pd-section-body { margin-top:0.6rem; }
.pd-section-body ul { padding-left:1.4rem; }
.pd-section-body li { margin-bottom:0.3rem; color:#444; }
.pd-section-body p  { color:#555; line-height:1.7; }


/* -------------------- Contact Us Page */
.cmb { padding: 40px 60px; }
.contbox { margin-bottom: 30px; }
.ch {
    font-size: 28px;
    font-weight: 600;
    color: #0b2540;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif !important;
}
.cp {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
}
.dhead {
    font-size: 20px;
    font-weight: 600;
    color: #0b2540;
    margin: 20px 0 8px;
    font-family: 'Outfit', sans-serif !important;
}
.dp {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}
.dp span {
    font-weight: 600;
    color: #333;
    margin-right: 4px;
}
.dp a { color: #0077b6; text-decoration: none; }
.dp a:hover { text-decoration: underline; }
.contboxx {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 28px;
}
.contboxx .form-label{
    font-size: 13px;
    font-weight: 600;
}
.contboxx select.form-control {
    font-size: 13px;
    padding: 6px 12px;
}
.chh {
    font-size: 15px;
    font-weight: 600;
    color: #0077b6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif !important;
}
.subc {
    background: #003051;
    color: #fff;
    border: none;
    padding: 8px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif !important;
}
.subc:hover { background: #6eaed5; color: #fff; }
.capbtncont{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* -------------------- Compare Floating Bar */
.compare-floating-bar {
    position: fixed;
    bottom: -80px;
    left: 0; right: 0;
    background: #0b2540;
    color: #fff;
    z-index: 9998;
    padding: 10px 30px;
    transition: bottom .3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,.25);
    border-top: 2px solid #0e8299;
}
.compare-floating-bar.show { bottom: 0; }
.compare-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    font-size: 13px;
}
.compare-products-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}
.compare-product-tag {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
}
.compare-page-btn {
    background: #0e8299;
    color: #fff !important;
    padding: 6px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}
.compare-page-btn:hover { background: #0a6d82; }
.compare-page-btn.disabled {
    opacity: .4;
    pointer-events: none;
}
.compare-clear-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
}
.compare-clear-btn:hover { border-color: rgba(255,255,255,.7); }

.sticky-top {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 6;
    vertical-align: top;
    padding-top: 16px !important;
}
.remove-product {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fee2e2;
    border: none;
    border-radius: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
}
.remove-product:hover { background: #fca5a5; }
.compare-quote-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #0c4a6e;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.compare-quote-btn:hover { background: #0e6a9e; }

/* -------------------- About Us Page */
.aboutushg {
    font-size: 28px;
    font-weight: 600;
    color: #0b2540;
    margin: 30px 0 16px;
    font-family: 'Outfit', sans-serif !important;
}
.aboutusp {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* ── Get Quote / global captcha box (loaded stylesheet) ── */
.capbox .fake-input {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 16px;
    margin-top: 4px; */
}
.capbox .fake-input .captcha_image {
    height: 40px;
    width: auto;
    border-radius: 5px;
    flex: 0 0 auto;
    background: #f8f8f8;
}
.capbox .fake-input .captcha_input {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
    padding: 10px 14px;
}
.capbox .refresh {
    margin-left: 0;
    flex: 0 0 auto;
}
.capbox .refresh a {
    cursor: pointer;
    display: inline-block;
    padding: 6px 8px;
    color: #fff !important;
  border: 1px solid #6daed6;
  background: #6daed6;
  border-radius: 4px;
}
.capbox .refresh a:hover {
    color: #ff7401;
}

/* ── Get Quote product suggestions dropdown ── */
.quote-product-wrap {
    position: relative;
}
.quote-suggestions {
    position: absolute;
    z-index: 1080;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    margin: 2px 0 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.quote-suggestions .quote-suggestion-item {
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
}
.quote-suggestions .quote-suggestion-item:hover,
.quote-suggestions .quote-suggestion-item.active {
    background: #fff3e9;
    color: #ff7401;
}
#quoteProductField.locked {
    background: #f3f3f3;
    cursor: not-allowed;
}
/* Let clicks on the disabled submit button reach the wrapper so we can reveal errors */
#quoteSubmitBtn:disabled {
    pointer-events: none;
}
#quoteSubmitWrap {
    cursor: pointer;
}
.quote-field-error {
    display: none;
    color: #d93025;
    font-size: 12px;
    margin-top: 4px;
}
.quote-field-error.show {
    display: block;
}

.quote-product-preview{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:12px;
    padding:10px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    background:#fafafa;
}

.quote-product-preview img{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:6px;
    background:#fff;
    border:1px solid #eee;
}

.quote-product-name{
    font-size:15px;
    font-weight:600;
    color:#003050;
}
/* ------------mobilr mega menu drop */
/* ===========================
   Mobile Equipment Menu
=========================== */

.mobile-equipment{
    border-bottom:1px solid #ececec;
}

/* .mobile-menu-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:15px 0;
    font-size:15px;
    font-weight:600;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.mobile-menu-toggle:hover{
    color:#0d6efd;
} */

.mobile-arrow{
    font-size:14px;
    transition:.35s ease;
}

.mobile-arrow.rotate{
    transform:rotate(180deg);
}

/* ===========================
   Collapse Wrapper
=========================== */

.mobile-equipment-wrapper{

    max-height:0;
    overflow:hidden;
    opacity:0;

    display:flex;
    flex-direction: column;
    gap:15px;

    background:#fff;
    border-radius:10px;

    transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .35s ease;

}

.mobile-equipment-wrapper.show{

    max-height:650px;
    opacity:1;
    padding:15px;

}

/* ===========================
   Left Preview
=========================== */

.mobile-preview{

    width:100%;
    flex-shrink:0;

    position:sticky;
    top:0;

    align-self:flex-start;

    background:#f8f9fb;

    border-radius:10px;

    border:1px solid #e7e7e7;

    padding:12px;

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

    min-height:220px;

}

.mobile-preview img{

    width:100%;
    max-width:150px;

    object-fit:contain;

    transition:
    opacity .3s,
    transform .3s;

}

.mobile-preview img:hover{

    transform:scale(1.05);

}

/* ===========================
   Right Category List
=========================== */

.mobile-category-list{

    width:62%;

    max-height:520px;

    overflow-y:auto;

    padding-right:4px;

}

/* Scrollbar */

.mobile-category-list::-webkit-scrollbar{

    width:5px;

}

.mobile-category-list::-webkit-scrollbar-track{

    background:#f1f1f1;

}

.mobile-category-list::-webkit-scrollbar-thumb{

    background:#6daed5;

    border-radius:20px;

}

/* Firefox */

.mobile-category-list{

    scrollbar-width:thin;

    scrollbar-color:#6daed5 #f1f1f1;

}

/* ===========================
   Group Title
=========================== */

.mobile-group-title{

    font-size:14px;

    font-weight:700;

    color:#000;

    margin-top:18px;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.mobile-group-title:first-child{

    margin-top:0;

}

/* ===========================
   Category Link
=========================== */

.mobile-category-link{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:10px 12px;

    margin-bottom:6px;

    border-radius:2px;

    color:#555;

    text-decoration:none;

    font-size:14px;

    font-weight:500;

    transition:.3s;

    position:relative;

}

/* Hover */

.mobile-category-link:hover{

    background:#edf5ff;

    color:#6daed5;

    transform:translateX(5px);

}

/* Active */

.mobile-category-link.active{

    background:#6daed5;

    color:#fff;

    font-weight:600;

    box-shadow:0 10px 20px rgba(13,110,253,.18);

}

/* Left Indicator */

.mobile-category-link.active::before{

    /* content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#ffc107;

    border-radius:4px 0 0 4px; */

}

/* Check */

.mobile-category-link.active::after{

    content:"✓";

    font-size:13px;

    font-weight:bold;

}

/* ===========================
   Animation
=========================== */

.mobile-category-link{

    opacity:0;

    animation:fadeItem .45s forwards;

}

.mobile-category-link:nth-child(2){animation-delay:.05s;}
.mobile-category-link:nth-child(3){animation-delay:.08s;}
.mobile-category-link:nth-child(4){animation-delay:.11s;}
.mobile-category-link:nth-child(5){animation-delay:.14s;}
.mobile-category-link:nth-child(6){animation-delay:.17s;}
.mobile-category-link:nth-child(7){animation-delay:.20s;}
.mobile-category-link:nth-child(8){animation-delay:.23s;}
.mobile-category-link:nth-child(9){animation-delay:.26s;}

@keyframes fadeItem{

    from{

        opacity:0;

        transform:translateX(20px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ===========================
   Responsive
=========================== */

@media(max-width:480px){

.mobile-preview{

    width:100%;

    min-height:180px;
}

.mobile-preview img{

    max-width:120px;
   

}

.mobile-category-list{

    width:100%;

}

.mobile-category-link{

    font-size:12px;

    padding:5px 10px;

}

.mobile-group-title{

    font-size:13px;

}

}
.mobile-category-wrapper{

    display:none;

    margin-top:12px;

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:10px;

    overflow:hidden;

    display:none;

}

.mobile-category-wrapper.show{

    display:flex;

    gap:15px;

    padding:15px;

    animation:mobileMenuFade .35s ease;

}

@keyframes mobileMenuFade{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
.category-drop:nth-child(2) {
  display: flex;
  flex-direction: column !important;
}

/* --------------------Get quote */
.mhrequote{
    background: #0c4a6e;
    color: #fff;
}
.mhrequote .mtrquote{
    color: #fff;
}
.mtrquote{
    font-size: 28px;
    font-weight: 600;
    color: #0b2540;
    font-family: 'Outfit', sans-serif !important;
}
.fcrquote{
    font-size: 13px;
    color: #555;
    line-height: 1.9;
    font-family: 'Outfit', sans-serif !important;
    border-radius: 2px !important;
}
.fcrquote option{
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px;
}
.submitbtnquote{
    display:flex;
    width:100%;
}
.submitbtnquote input{
    background: #0c4a6e;
    color: #fff;
    border: none;
    padding: 8px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif !important;
    width:100%;
}