.product-banner-section {
  position: relative;
  background-image: url('../about-images/abt-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}



.product-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.product-banner-content{
  position: relative;
  z-index: 2; /* Ensure it's above the overlay */
}

.product-banner-content {
  text-align: left;
     padding-left: 65px;
    padding-top: 60px;
}

.product-text {
  font-size: 42px;
  margin-bottom: 10px;
}

.product-inner-para {
  color: white;
  padding-left: 0; /* No need for 23px anymore */
}

.product-inner-para a {
  color: white;
  text-decoration: none;
}

.product-inner-para a:hover {
  color: white;
  text-decoration: none;
}




/* COMPANY PROFILE SECTION css */


.company-profile-content {
    font-family: 'Be Vietnam Pro', sans-serif;
    text-align: center;
    align-items: center;
    /* padding: 0px 40px; */

}

.content-title {
    color: #A90605;
    margin-top: 50px;
}

.content-text {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
    color: #323232;
}



.mission-vision {
    background-image: url('../about-images/mission-bg.png');
    margin-top: 50px;
    padding: 100px 0;
    /* Increased top and bottom padding */
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-position: center;
}


.mission-heading {
    font-family: 'Be Vietnam Pro', sans-serif;
    padding-top: 47px;
    font-size: 25px;
    padding-bottom: 20px;
    position: relative;
    padding-left: -2px;
    font-weight: bold;
    font-size: 1.5rem;

}

.mission-heading::before {
    content: "";
    position: absolute;
    left: -17px;
    top: 95px;
    width: 4px;
    height: 53%;
    background-color: #A90605;
    border-radius: 2px;

}

.mission-para {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    text-align: justify;
    padding-right: 100px;

}


.vision-section {
    position: relative;
    overflow: hidden;
}

.vision-bg-img {
    width: 100%;

}

.vision-heading {
    padding-left: 0px;
    margin-bottom: 23px;
}

.vision-para {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    text-align: justify;
    padding-right: 100px;
}


.vision-content {

    color: #ffff;
    padding-top: 51px;
    padding-left: 92px;
    /* top: 20px; */


}

/* quality assurance css */
.quality-section-heading{
    padding-top: 50px;
    padding-bottom: 50px;
    color: #A90605;
    font-size: 28px;
    font-weight: bold;
}

.quality-content {
    text-align: center;
}

.quality-inner-content {

    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    text-align: center;
   padding-top: 50px;
   /* padding-bottom: 50px; */
}



/* Transportation section css */

.Transportation {
  background-color: #FFEFEF;
  margin-top: 50px;
}

.Transportation-content {
  text-align: center;
  align-items: center;
  padding-top: 15px;

}

.Transportation-heading {
  color: #A90605;
  font-size: 28px;

}

.Transportation-para {
  font-size: 15px;
  padding: 0px 10px;
  color: #323232;
  font-family: 'Be Vietnam Pro', sans-serif;
  text-align: center;
}

.Transportation {
  padding: 60px 0;
  background-color: #FFEFEF;
}

.custom-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: auto;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  /* border-radius: 12px; */
  /* object-fit: cover; */
  border-top-left-radius: 45px;
  height: 180px;
}

.card-description {
  margin-top: 40px;
  font-size: 14px;
  color: #616161;
  font-weight: 500;
   font-family: 'Be Vietnam Pro', sans-serif;

}


.corner-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #a40000;
  clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
}

