.product-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust this value to set banner height */
  background: url('images/product-banner.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height:306px;
}

/* Dark overlay to enhance text contrast */
.product-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

/* Centered overlay text */
.product-hero-text {
  position: relative;
  width: 374px;
  height:148px;
  left:80px;
  color: #fff;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: bold;
  z-index: 2;
  padding: 50px;
  background: rgba(0, 0, 0, 0.5);
}
ul.breadcrumb {
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 10px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: white;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: white;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: orange;
  text-decoration: underline;
}

.about-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}


.about-section h1 {
  font-size: 40px;
  font-weight: 700;
  text-align:center;
  color: #0D0D0D;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  gap: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #0D0D0D;
}
.about-bold {
  font-weight: 700;
}
.highlight-text {
  font-size: 20px;
  font-weight: 700;
}

.aboutus {
  font-size: 15px;
  font-weight: 500;
}



.about-text {
  max-width: 500px;
  text-align: left;
  margin-left: 20px;
}
.about-section .heading{
  font-size: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
}


.about-images {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-top {
  position:relative;
  width: 100%;
  border-radius: 20px;
  z-index: 1;
}
/*product-section */
.products-section {
  text-align: center;
  padding: 50px 20px;
 background: #F6F6F6;
}

.section-subtitle {
  color: #ff6600;
  margin-bottom: 5px;
  font-weight: 600;
}

.section-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
}
.product-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    justify-content: space-between;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 10px;
 box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card .more_description {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .show_more {
  display: block;
  cursor: pointer;
}
.product-card .show_less {
  display: none;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 16px;
  margin: 15px 10px 10px;
  color: #333;
}

.product-card a {
  display: inline-block;
  margin: 0 0 20px;
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
}

/*services-section*/
.services-section {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

.section-subtitle {
  color: #f76b1c;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #444;
}

.swiper {
  padding: 20px 0 40px;
  width: 90%;
  margin: auto;
  overflow: visible  !important;
}

.service-card {
  position:relative;
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  margin-right:15px;
  margin-top:65px;

}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  color: #e46100;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  color: #333;
  text-align: left;
  font-size: 15px;
}

.service-card ul li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f76b1c;
}
.image-on-card{
    left: 40%;
    position: absolute;
    top: -40px;
    z-index: 1;
}
.contact-box{
    margin:0 auto 40px;
}
@media (max-width: 430px) {
  .product-hero-text{
      left:40px;
      width:80%;

}
.product-wrapper {
  display:block;
}
.service-card{
  margin-bottom:50px;
}
}