.page-title-wrapper{
    display:none;
}
.slider {
  position: relative;
  width: 100%;
  height: 490px;
  overflow: hidden;
  border-radius: 10px;
  margin-top:50px;
  margin-bottom:30px;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  transition: all 0.5s ease;
}
.slide.active {
  display: block;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-bg-overlay{
    background: #000000CC;
    position:absolute;
    width:100%;
    height:100%;
    z-index:0;
    top:0;
}
.text-overlay {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}
.text-overlay h2 {
  font-size: 56px;
  color: #fff;
  line-height:62px;
  margin: 0;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:50px;
}
.text-overlay h2 span{
    color: #E25D21;
}
.text-overlay p {
  font-size: 24px;
  margin: 20px 0;
  text-transform:uppercase;
}
.text-overlay button {
  background-color: #E25D21;
  color: white;
  border: none;
  padding: 19px 40px;
  cursor: pointer;
  font-size:18px;
  font-weight:500;
}
.dots {
  position: relative;
  display: flex;
  margin-bottom:50px;
}
.dot {
    height: 7px;
    background-color: #bbb;
    border-radius: 19px;
    margin: 0 5px;
    cursor: pointer;
    width: 50%;
}
.dot.active {
  background-color: #f28c38;
}

.page-wrapper{
    
}
/*featured products*/
.featured-tools-section {
    margin-bottom:50px;
  }
  .featured-tools-section .section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #215FAC;
    text-align: left;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    box-shadow: 0px 0px 15px -7px #0000008C;
  }
  .product-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  .product-card .mpn {
    font-size: 13px;
    color: #333;
    margin: 0 0 8px;
  }
  .product-card .product-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px;
    min-height: 48px;
  }
  .product-card .badge {
    width: 80%;
    min-width: 120px;
    background-color: #e25d21;
    color: #FFFFFF;
    border-radius: 4.5px;
    text-align: center;
    max-width: 120px;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 10px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    line-height:21px;
    margin-top:3px;
  }
  .product-card .badge:before{
          content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #FFFFFF;
  }
  .product-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #e66428;
    margin: 10px 0;
  }
  .product-card .btn-cart {
    background: #fff;
    border: 1px solid #D1D3D4;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 500;
  }
  .product-card .btn-cart:hover {
    background: #e66428;
    color: #fff;
    border-color: #e66428;
  }
  .product-card:hover {
    
  }
/*featured products*/
/*categories section */
.categories-section {
    
    text-align: center;
    margin-bottom:50px;
  }
  .categories-section .section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #215FAC;
    text-align: left;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    box-shadow: 0px 0px 15px -7px #0000008C;
  }
  .categories-grid.featured-tools-parts{
      grid-template-columns: repeat(5, 1fr);
  }
  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    text-decoration: none;
    color: #000;
  }
  .category-card img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  .category-card h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
  }
  .category-card:hover {
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);*/
  }

/*about us section*/
.about-us-section {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index:1;
}
.about-us-section::before {
  
}
.about-us-section .section-title {
    font-size: 32px;
    font-weight: bold;
    color:#215FAC;
}
.about-us-section .section-title span {
    color: #e66428;
}
.about-us-section .section-subtitle {
    color: #777;
    margin: 15px 0;
}
.about-us-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}
.about-us-section .social-link {
    text-align: center;
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
}
.about-us-section .social-link img{
    width: 50px;
    margin-bottom: 15px;
}
.about-us-section .btn-primary {
    display: inline-block;
    background: #e66428;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
}
@media (max-width: 992px) {
    .slider{
      margin-top: 0px;
    }
    .text-overlay h2 {
      font-size: 36px;
      line-height:42px;
    }
    .text-overlay p {
      font-size: 16px;
    }
    .products-grid, .categories-grid.featured-tools-parts, .categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .text-overlay h2 {
      font-size: 26px;
      line-height:32px;
    }
    .text-overlay p {
      font-size: 14px;
    }
    .products-grid, .categories-grid.featured-tools-parts, .categories-grid {
      grid-template-columns: repeat(1, 1fr);
    }
}