

.bold-text {
    font-weight: bold; /* Make the text bold */
}
.colorful-line {
    width: 100px; /* Adjust width of the line */
    height: 3px; /* Adjust height of the line */
    background: #add8e6; /* Single color */
    margin-bottom: 20px; /* Adjust margin as needed */
}
.email_profile {
    margin-right: 20px; /* Adds spacing between phone number and email */
    color: blue; /* Text color */
    text-decoration: none;
    align-items: right;
}
.video-container {
    position: relative;
    height: 55vh;
    overflow: hidden;
    border-radius: 5px;
}
#video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.video-container img {
    width: 100%;
    height: 90%;
    display: block;
    border-radius: 5px;
}
.heading-container {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    max-width: 500px;
    height: 25%;
    background-color: #add8e6;
    z-index: 1;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.heading-container h2 {
    color: #fff; /* Set text color */
    margin: 0;
    text-align: center; /* Center text */ /* Prevent wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Show ellipsis for overflow text */
    margin-top: 3.5%;
}
.companyinformation {
    display: flex;
    flex-wrap: wrap;
}
.content {
    flex:1;
    width: 70%; /* 80% width */
    padding: 20px;
}
p {
    text-align: justify;
  }
.membersof {
    flex-wrap:wrap;
    width: 20%;
    padding: 20px; /* 20% width */ /* Add spacing between content and images */
}

.image-wrapper {
    width: 50%; /* Images fill the side column */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px;/* Initially set to column layout */
}

.image-wrapper img {
    margin: 10px;
    height: 50%;
}

.our-team-container {
    padding: 20px;
}

.team-members {
    display: flex;
    flex-wrap: wrap; /* Allow flex items to wrap onto multiple lines */
    gap: 20px; /* Add some space between team members */
}

.team-member {
    flex: 1 0 30%; /* Each team member occupies 30% of the available width by default */
    background-color: #f0f0f0; /* Background color for the team member container */
    padding: 20px;
    border-radius: 5px;
}


.Quality{
    width: 60%;
    margin-bottom: 20px;
    padding: 20px;
}
.facilities-container {
    margin-top: 20px;
    display: flex;
    /*align-items: center;*/ 
    padding: 20px;
}
.factoryinfo{
    flex:1;
}
.facilities-image {
    margin-right: 20%;
    width: 30%;
    border-radius: 5px;
    margin-top:2.5%;
}


.industriesweserve{
    margin-bottom: 20px;
    padding: 20px;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 60px;
    border-radius: 5px;
}

.image-container_1 {
    border: 1px solid #ccc;
    border-radius: 5px;
    width:250px;
}

.image-container_1 img {
    width: 100%;
    height: 150px;
    border-radius: 5px;
}
.label {
    margin-top: 10px;
    text-align: center;
}

  @media screen and (max-width: 768px) {
    .heading-container {
        left: 5%;
        transform: none;
        max-width: 500px;/* Remove the translation */
    }
    .heading-container h2{
        margin-top:7.5%;
        font-size: 20px;
    }
    .companyinformation {
        flex-direction: column;
         /* Change to column layout */
    }
    .content,.membersof {
        flex: 1 0 100%; /* Remove top margin on larger screens */
    }
    .team-member {
        flex: 1 0 50%; /* Each team member occupies 100% of the available width on smaller screens */
    }
    .facilities-container {
        flex-direction: column;
        margin-top: 20px;
        /* display: flex; */
        /* align-items: center; */
        padding: 20px;
    }
    .facilities-image {
        margin-left: 0; /* Remove left margin for the image */
        margin-top: 20px; /* Adjust spacing */
    }
    .company-logo img{
        max-height: 150px;
        max-width: 150px;
        margin-left: 100px;
        margin-right: 250px ;
        border-radius: 5px;
    }
    .facilities-image {
        /*margin-left: 20%;*/
        width: 100%;
        border-radius: 5px;
        /* align-items: center; */
    }

}
@media screen and (max-width: 430px) and (min-width :312px){
    .heading-container {
        left: 5%;
        transform: none;
        width:90%;/* Remove the translation */
    }
    .heading-container h2 {
        margin-top: 5.5%;
        font-size: 15px;
    }
    .Quality{
        width:90%;
    }
    .companyinformation {
        flex-direction: column;
    }
    .content {
        width:90%;
    }
    .facilities-image {
        margin-right: 20%;
        width: 100%;
        border-radius: 5px;
    }
    .facilities-image {
        /*margin-left: 20%;*/
        width: 100%;
        border-radius: 5px;
        /* align-items: center; */
    }
    .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 40px;
    border-radius: 5px;
   }
  }