body {
  font-family: 'Be Vietnam Pro', sans-serif;
}

/* Banner css */
.banner-text {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}

.banner-content {
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  width: 100%;
  padding-left: 150px;
  padding-top: 75px;
}

.banner-btn {
  border-radius: 30px;
  color: #A90605;
  background-color: #fff;
  margin-top: 26px;
  padding: 8px 15px;
  border: none;
  font-family: 'Be Vietnam Pro';
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background: linear-gradient(to right, #A90605, #430202);
  color: #fff;
}

.material-symbols-outlined {
  vertical-align: middle;
  font-size: 12px;
  margin-left: 5px;
}



.fw-bold {
  font-weight: bold;
}

.overflow-hidden {
  overflow: hidden;
}

.home-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.Home-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
}


.banner-content {
  position: relative;
  z-index: 2;
}

.banner-extra-img {
  position: absolute;
  top: 55%;
  right: 0px;
  transform: translateY(-50%);
  width: 250px;
}

/* Carousel controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #E40000;
  border: none;

}

@media (max-width: 768px) {
  .banner-text {
    font-size: 2rem;
  }

  .Home-banner {
    height: 400px;
  }

  .banner-extra-img {
    width: 100%;
  }
}

/* Slide 1 */
.slide-1 {
  background-image: url('../Homepage-images/homebanner.png');
}

/* Slide 2 */
.slide-2 {
  background-image: url('../Homepage-images/homebanner-2.png');
}

/* Slide 3 */
.slide-3 {
  background-image: url('../Homepage-images/homebanner-3.1.png');
}

.slide-4 {
  background-image: url('../Homepage-images/homebanner-4.png');
}

/* for curosel smooth transition */

.carousel-wrapper {
  display: flex;
  transition: transform 2s ease-in-out;
  /* slow, smooth slide */
}


/* Wrapper for the inner small images */
.inner-images {
  position: absolute;
  top: 55%;
  right: 100px; /* moves them slightly to the left of the main image */
  transform: translateY(-50%);
  display: flex;
  flex-direction: row; /* stack vertically — use row if you want side by side */
  align-items: flex-end;
  gap: 20px; /* space between them */
  z-index: 3;
}

/* Small sub images */
.sub-img {
  /* width: 100px; */
  transition: transform 0.3s ease;
}

.inner-sub-images{
    position: absolute;
  top: 55%;
  right: 63px; /* moves them slightly to the left of the main image */
  transform: translateY(-50%);
  display: flex;
  flex-direction: row; /* stack vertically — use row if you want side by side */
  align-items: flex-end;
  /* gap: 10px; space between them */
  z-index: 3;
}



/* About Us */

.about-us {
  margin-top: 48px;
  margin-bottom: 48px;
}

.about-us-content {
  margin-top: 48px;
  margin-bottom: 48px;
}

.abt-btn {
  border-radius: 30px;
  color: #FFFFFF;
  background-color: #A90605;
  margin-top: 26px;
  padding: 8px 15px;
  border: none;
  font-family: Be Vietnam Pro;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 20px;
}

.abt-btn:hover {
  background: linear-gradient(to right, #A90605, #430202);
  color: #fff;
}

.aboutus-heading {
  color: #A90605;
  font-family: Be Vietnam Pro;
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  padding-left: 17px;
}

.aboutus-text {
  font-family: Be Vietnam Pro;
  font-size: 15px;
  padding-top: 13px;
  margin-bottom: 33px;

}


.aboutus-inner-img {
  margin-top: 52px;
}


.aboutus-line-box {
  position: relative;
  padding-left: 20px;
}

.aboutus-line-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  height: 68px;
  width: 3px;
  background-color: #A90605;
  border-radius: 10px;

}

/* product css */

.products-section {
  padding: 30px 0;
  background: #fdeff0;
  /* light pink */
}

.pro-heading {
  color: #b40000;
  font-size: 28px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 50px 30px #FFE5E5;
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
  transition: transform 0.3s ease;
  height: 83%;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  display: block;

}

.card-body {
  padding: 12px 16px;
}

.card-text {
  font-size: 16px;
  font-weight: 500;
  margin: 12px 0;
  color: #616161;
}



.quality-heading {
  color: #b40000;
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

/* transportation-section */


.trans-btn{
  border-radius: 30px;
  color: #FFFFFF;
  background-color: #A90605;
  margin-top: 26px;
  padding: 8px 15px;
  border: none;
  font-family: Be Vietnam Pro;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 20px;
}

.trans-btn:hover {
  background: linear-gradient(to right, #A90605, #430202);
  color: #fff;
}
.transportation {
  position: relative;
  display: flex;
  background: none;
  background-image: url('../Homepage-images/trans-bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  display: flex;
  justify-content: flex-end;
}

.transportation::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF4F4;
  z-index: -1;
}

.trans-content {
  padding-top: 60px;
}

.trans-line-box {
  position: relative;
  padding-left: 20px;
}

.trans-line-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: -35px;
  height: 68px;
  width: 3px;
  background-color: #A90605;
  border-radius: 10px;

}

/* Our Valued Customers css */

.Our-Valued-Customers {
  background: linear-gradient(to bottom, #FFFFFF, #D7D7D7);
  padding: 0px 20px;

}

.valued-customer-text {
  color: #A90605;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}

.curosel-img {
  background-color: #fff;
  border-radius: 10px;

}

/* Inactive dots */

.owl-theme .owl-dots .owl-dot span {
  background-color: #DA9797 !important;
  opacity: 1 !important;
  width: 8px;
  /* normal size */
  height: 8px;
  transition: all 0.3s ease;

  /* smooth size change */
}

/* Active dot - bigger size */
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #A90605 !important;
  width: 12px;
  /* bigger size */
  height: 12px;
  opacity: 1 !important;
}


/* quality assurance css  */


.quality-inner-img {
  margin-top: 230px;
  padding-left: 18px;
}

.quality-text {
  color: #B73700;
  font-family: 'Zain', sans-serif;
  /* font-size: 17px; */
  font-weight: bold;
  background-color: #fff;
  padding: 10px;

  height: 76px;
  margin-left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 10px #FCDCCF;

  margin-left: -20px;
}

.imagesss {
  height: 100px;
  margin-left: 0px;
  margin-top: 8px;

}

.quality-card {
  display: flex;
  align-items: center;

  border-radius: 10px;
  /* box-shadow: 5px 5px 10px #FCDCCF; */

}