.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-caption h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'SF Pro Display';
}

.hero-caption p {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'SF Pro Display';
  text-transform: capitalize;
}

/* Optional: make it responsive */
@media (max-width: 768px) {
  .hero-caption h2 {
    font-size: 1.8rem;
  }
  .hero-caption p {
    font-size: 0.9rem;
  }
}


#about_section p {
    color: rgba(0, 0, 0, 0.6); /* 60% opacity */
    font-size: 20px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    text-align: justify;
}

.aboutTitle
{
    margin-bottom: 4px;
}

.about_info h5
{
    font-family: 'SF Pro Display';
    color: rgba(0, 0, 0, 8);
    font-size: 25px;
}

.about_info h6
{
    font-family: 'SF Pro Display';
    color: #1A3C5C;
    font-size:22px;  
}

.about_details p
{
    margin: 0;
   
    font-size: 25px !important;
}

.about_details ul li
{
    font-size: 20px !important;
}

.about_details span
{
    font-family: 'SF Pro Display';
    font-size: 20px !important;
    color: rgba(0, 0, 0, 0.6);
}



#glass_section
{
    /* background-image: url(../../assets/img/about/what_we.png); */
    background-image: url(../../assets/img/about/about_banner.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}
#glass_section p {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    font-weight: 300;
    padding: 0px 130px;
}

.glassTitle
{
    margin-bottom: 4px;
    color: #fff;
}

.glass_info h5
{
    font-family: 'SF Pro Display';
    color: rgba(0, 0, 0, 8);
    font-size: 25px;
    color: #fff;
}

.glass_info h6
{
    font-family: 'SF Pro Display';
    color: #fff;
    font-size:22px;  
}


.qualityTitle
{
    margin-bottom: 4px;
    font-size: 41px;
    
}

.quality_info h5
{
    font-family: 'SF Pro Display';
    color: rgba(0, 0, 0, 8);
    font-size: 28px;
   
}

.quality_details {
  background-image: url("../../assets/img/about/achivement.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 30px;   /* more padding so cards get some breathing room */
}

/* Column spacing between cards */
#quality_section .col-lg-4,
#quality_section .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Card style */
.quality-card {
  background: rgba(26, 60, 92, 0.75);
  border-radius: 16px;
  padding: 30px 25px 30px 30px;
  min-height: 90px;          /* all cards same height */
  display: flex;
  align-items: center;
  gap: 12px;                 /* space between image and text */
}
.quality_card_details
{
  max-width: 1120px;
  margin-inline: auto;
}

/* Icon */
.quality-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;            /* icon will not shrink */
}

/* Text */
.quality-card-text {
 font-size: 19px;
line-height: 1.4;
color: #ffffff;
margin: 0;
font-family: 'SF Pro Display';
}

/* Mobile adjust */
@media (max-width: 576px) {
  .quality_details {
    padding: 40px 15px;
  }

  .quality-card {
    justify-content: center;
    text-align: center;
  }
}

