.hero_banner{
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.hero_data_con{
    color: rgb(6, 6, 6); 
    width: 50%;
    max-height: auto;
    border: 1px solid white;
    border-radius: 15px;
    text-align: center;
    padding:3% 20px;
    box-sizing: border-box;
}

/* --------------------------- glass code ------------------------------------------ */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px 10px rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.mt-2-per{
    margin-top: 2%;
}
.mb-2-per{
    margin-bottom: 2%;
}

.pad-20{
    padding: 20px;
    box-sizing: border-box;
}

.bg-col{
    background-color:#EEFBFF ;
}

.bg-2{
    background-image: url('images/background_images/bg-v2.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    opacity: 3%;
    background-position: 10% 40%;

}

.flex_card{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}
.lab_card{
    height: 300px;
    width: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}
.lab_card_hedding{
    background-color: rgba(255, 255, 255, 0.559);
    color: black;
    top: 0;
    left: 0;
    padding: 15px;
    width: 70%;
    border-bottom-right-radius:50px;
    text-align: center;
}

.lab_prod_card{
    min-height:300px;
    width: 350px;
    border-radius: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
}
.lab_prod_card_h2_con {
    text-align: center;
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 10px;

    /* Glassmorphism styles */
    background: rgba(255, 255, 255, 0.1); /* semi-transparent background */
    backdrop-filter: blur(10px);          /* blur effect behind the element */
    -webkit-backdrop-filter: blur(10px);  /* Safari support */

    border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);  /* soft shadow for depth */
}
.lab_prod_img{
    height: 300px;
    width: auto;
    margin: 0px auto;
}

.main_con{
    width: 90%;
    margin: 0px auto;
}
.content-ul{
    margin-left: 5%;
}
.content-ul li{
    line-height: 1.6;
}

@media only screen and (max-width: 600px){
    .hero_banner{
        height: 20vh;
    }
    .hero_data_con{
        width: 80%;
    }
    .m_h1{
        font-size: 20px;
    }
    .m_p{
        font-size: 16px;
    }
    .flex_card{
        gap: 20px;
    }
    .lab_card{
        height: 200px;
        width: 300px;
    }
    .lab_prod_card{
        min-height: 200px;
        width: 250px;
    }
    .lab_prod_img{
        height: 200px;
    }
}