@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap");
body {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #262626;
  --secondary-color: #4da3ff;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
}
.text_secondary {
  color: var(--secondary-color);
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 60px 0;
}
.fontWeight700 {
  font-weight: 700;
}
.title {
  font-size: 18px;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight500 {
  font-weight: 500;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 10px 0;
}
.header.stricky-fixed .leftLogo img {
  filter: none;
  -webkit-filter: none;
  width:120px;
}
.header.stricky-fixed .topHeader {
  display: none;
}
.header.stricky-fixed .rightMenu ul li a {
  color: #000;
}

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.headerIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-size: 1.1rem;
  background-color: var(--secondary-color);
  color: #fff;
}

.header {
  padding: 5px;
}
.leftLogo img {
 width:160px;
}
.footerlogo img{
     width:200px;
}

.centerMenus ul {
  display: flex;
}
.centerMenus ul li a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 5px 20px;
  color: #000;
}
.centerMenus ul li a:hover {
  color: var(--secondary-color);
}
.inlineHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small_heading {
  font-size: 22px;
}
.sub_heading {
  font-size: 32px;
}
.heading {
  font-size: 48px;
}
.large_heading {
  font-size: 65px;
  line-height: 70px;
}

.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight400 {
  font-weight: 400;
}

.bgPrimary {
  background: var(--primary-color);
}
.bgSecondary {
  background: var(--secondary-color);
}
.bgGrey {
  background: #f1f1f1;
}

.btnTheme {
  display: inline-block;
  padding: 12px 25px;

  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.btnTheme:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btnTheme2 {
  display: inline-block;
  padding: 12px 25px;

  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.btnTheme2:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -200px;
  right: 10px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 18px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}
footer {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: #262626;
  background-size: cover;
  background-position: 50%;
  z-index: 1;
  background-attachment: fixed;
}
.newsletter-form {
  position: relative;
  margin-bottom: 25px;
  margin-top: 20px;
}
.newsletter-form input {
  height: 50px;
}
.newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  height: 50px;
}
.btnlook1 {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background-color: #3f3f3f;
  transition: 0.5s;

  font-weight: 500;
  font-size: 15px;
  padding: 13px 25px 13px 25px;
  width: 30%;
}
.newsletter {
  color: #fff;
}
.footerlogo a {
  color: #fff;
}
.footermenu {
  color: #fff;
}
.footermenu ul li {
  padding: 5px;
}
.footermenu ul li a {
  color: #fff;
  font-size: 18px;
}
.footermenu ul li a:hover {
  color: var(--secondary-color);
}
.footercontact {
  color: #fff;
}
.contact li {
  display: flex;
  align-items: flex-start;
  padding: 5px;
    gap: 5px; 
}

.contact li a {
  color: #fff;
  font-size: 18px;

}

.contact li a:hover {
  color: var(--secondary-color);
}

.contact li i {
  color: #c6c6c6;
  padding: 10px;
  border-radius: 5px;
  margin-right: 5px;
  min-width: 20px;
}
.copyright {
  color: #fff;
}
.brdrtop {
  border-top: 2px solid rgba(255, 255, 255, 0.3);

  padding-top: 25px;
}
.rightSocial a {
  color: #fff;
  font-weight: 700;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #ccc;
}

button:focus {
  outline: none;
  box-shadow: none;
}
.contactbg {
  background-image: url(../images/bg/contact-shape.png);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.addressform {
  background-image: url(../images/bg/conatct2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 120px 25px;
  color: #fff;
}
.rightTopbar ul {
  display: flex;
  align-items: center;
}
.addressform:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.addressform ul li {
  font-size: 20px;
  padding: 10px;
}
.addressform ul li a {
  color: #fff;
  font-size: 18px;
}
.addressform ul li a:hover {
  color: var(--secondary-color);
}
.form {
  background: #fff;
}
.product-card {
   border: 1px solid #ccc; 
  padding: 15px;
  background: #fff;
  height: 100%;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  border: 1px solid var(--secondary-color);
}
.product-card2 {
  padding: 30px;
  background: #fff;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.product-card2:hover {
  transform: translateY(-8px);
  border: 1px solid var(--secondary-color);
}

.product-img {height: calc(100vh - 90vh);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.more-btn {
  background: #4da3ff;
  color: #fff;
  width: 100%;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid #4da3ff;
  border-radius: 0;
}

.more-btn:hover {
  background: transparent;
  color: #4da3ff;
  border: 2px solid #4da3ff;
}
/* .featureBox {
  padding: 20px;
} */
.iconBox {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 10px;
  font-size: 24px;
}
.iconBox:hover {
  background: var(--primary-color);
}

.ctaSection {
  position: relative;

  background: url("../images/bg/conatct2.jpg") center/cover no-repeat;
  color: #fff;
  z-index: 1;
}

.ctaSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.heroSlider img {
  width: 100%;
  height: calc(100vh - 10vh);
  object-fit: cover;
}
.bannerText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 10%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  display: flex;
  align-items: center;
}
.aboutSection {
  background: linear-gradient(120deg, #2f7edb 50%, #4da3ff 50%);
}
.aboutBox {
  background: #fff;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.addressform:before {
  content: "";
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(77, 163, 255, 0.6)
  );
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.aboutImages {
  position: relative;
}

.mainImg {
  width: 100%;
  border-radius: 5px;
}
.smallImg {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 60%;
  border: 6px solid #fff;
  border-radius: 5px;
}
/* .videoBox video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
} */
.videoBox {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  overflow: hidden;
  border-radius: 10px;
}

.videoBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-item {
  margin-bottom: 20px;
}
.aboutBanner {
  position: relative;
  background: url("../images/banner/banner2.jpg") center/cover no-repeat;
  color: #fff;
  height: 250px;
  text-align: center;
  overflow: hidden;

  display: flex;
  align-items: center;      
  justify-content: center; 
}

.aboutBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(77, 163, 255, 0.5)
  );
  z-index: 1;
}

.aboutBanner .containerFull {
  position: relative;
  z-index: 2;
}

.aboutBanner p {
  font-size: 16px;
  margin-top: 10px;
}
.bannerCurve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.bannerCurve svg {
  display: block;
  width: 100%;
}
.aboutList {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.aboutList li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}
.aboutList li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
}
.aboutImage img {
  width: 100%;
  border-radius: 12px;
}
.aboutImage-new img {
  width: 100%;
  height: 500px;       
  object-fit: cover;  
  border-radius: 12px;
}

.statBox {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.statBox:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.statIcon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}
.contactBox {
  display: flex;
   align-items: flex-start;
  background: #ffffff;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.contactBox:hover {
  transform: translateY(-5px);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}
.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);

  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.centerMenus ul li a.active {
  color: var(--secondary-color);
}
.link-button i {
  transition: 0.3s;
  color: var(--secondary-color);
}

.link-button:hover {
  color: #000;
}
.link-button:hover i {
  transform: translateX(5px);
}
.categorySidebar {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  background: #f1f1f1;
}

.categorySidebar h5 {
  font-weight: 600;
  font-size: 26px;
}

.categorySidebar ul {
  list-style: none;
  padding: 0;
}

.categorySidebar ul li {
  margin-bottom: 10px;
}

.categorySidebar ul li a {
  display: block;
  padding: 10px;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.categorySidebar ul li a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.categorySidebar ul li a.active {
  background: var(--secondary-color);
  color: #fff;
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link:hover {
  color: #333;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  background: var(--secondary-color);
  font-size: 22px;
  color: #fff;
}

.catalog-content {
  display: none;
  padding: 15px;
  background: #fff;
}
.catalog-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.catalog-item.active .catalog-header i {
  transform: rotate(180deg);
}
.catalog-content table td img {
  height: 120px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 6px;
}
.catalog-content table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  border: 1px solid #666;
  border-collapse: separate;
  border-spacing: 0;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.catalog-content table thead th {
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #222;

  border-bottom: 1px solid #666;

  text-transform: uppercase;
}

.catalog-content table tbody td {
  padding: 14px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid #666;
  color: #444;
}

.catalog-content table td + td,
.catalog-content table th + th {
  border-left: 1px solid #666;
}

.productCard {
  padding: 20px;
  border-radius: 16px;

  overflow: hidden;
}

.productSlider img {
  width: 100%;
  border:2px solid #ddd;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
}
.center-img{
    max-width: 100%;
margin-top:50px;
    max-height: 90px;
    display: inline-block;
    object-fit: contain;
}
.product-img-new {
  border: none !important;
  height: 400px !important;
}
.slick-dots li button:before {
  font-size: 10px;
  color: var(--secondary-color);
}
.slick-dots li.slick-active button:before {
  color: var(--secondary-color);
}
.productTabs {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.productTabs .nav-tabs {
  border-bottom: 1px solid #eee;
}

.productTabs .nav-link {
  border: none;
  color: #555;
  font-weight: 600;
  padding: 15px 20px;
}

.productTabs .nav-link.active {
  color: var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

.productTabs .tab-content {
  padding: 20px;
}

.customTable table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.customTable th {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 17px;
  padding: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
}
.customTable td {
  padding: 12px;
  font-size: 16px;
  border-top: 1px solid #eee;
}

.customTable tbody tr:nth-child(even) td {
  background: #f5f8ff;
}

.customTable tbody tr:nth-child(odd) td {
  background: #ffffff;
}

.customTable tbody tr:hover td {
  background: #e9f2ff;
}
table th {
  vertical-align: top;
}
.product-card-box{
border:1px solid #ddd;
    padding:25px;
    border-radius:12px;
    height:100%;
}
.custom-list{
    padding-left:20px;
    list-style-type: disc;
}

.custom-list li{
    margin-bottom:12px;
    color:#333;

    display:list-item;
}

.custom-list li::marker{
    color:#0d6efd;
    font-size:18px;
}
.whatsAppIcon {
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 99;
}
.whatsAppIcon a {
  display: inline-block;
  width: 55px;
  height: 55px;
  background: #40c351;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  line-height: 55px;
  text-align: center;
  font-size: 30px;
}
.certificate-image img{
    width: 100%;
    height:450px;
  
}
.brandBox {
    height: 150px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.brandBox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}