
/* project specific css */
/* header css */
.homepageHeader {
    width: 100%;
    margin-inline: auto;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg-color);
    opacity: 1;
    z-index: 999;
}

.header_menu_div a, 
.header_menu_div a {
    padding: 6px 10px;
    font-weight: var(--default-font-weight-thin);
    color: #fff !important;
    border-bottom: 1px solid transparent;
    position: relative;
    display: inline-block;
}
.font-dark{
    color: #000;
}

.breacrumbText:hover{
    color:#fff;
    cursor: pointer;
}
.header_menu_div a.active, 
.header_menu_div a:hover {
    padding: 6px 10px;
    font-weight: var(--default-font-weight-thin);
    color: #fff !important;
    border-bottom: 1px solid transparent;
    position: relative;
    display: inline-block;
}

.header_menu_div a.active::before, 
.header_menu_div a:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Adjust this for border thickness */
    background-color: #fff;
    transition: width 0.3s ease-in-out; /* Adjust timing as needed */
}

.header_menu_div a.active:hover::before, 
.header_menu_div a.active::before {
    width: 50%; /* The border will grow to only half the width of the link */
    left: 25%;

}

.footer-bg-color-green{
    background: var(--primary-bg-color);
}
/* end of header css */

/* project specific general css */

/* end of project specific general css */

/* homepage css */
#homepageSection2-socialMedia{
    background: var(--primary-bg-color);
    padding: 15px;

}

.email-Link{
    cursor: pointer;
    text-decoration: underline !important;
}

.email-Link:hover{
    text-decoration: underline !important;
}

.socialMediaIconImg{
    height: 25px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.homepageTitle{
    border-left: 2px solid #064E42;
}

#homepageSection3-whoweare{
    /* padding: 50px; */
    background: #EAEAEA;
}

.homepageSection2{
    border-left: 2px solid transparent;
}

.homepageSection7{
    border-left: 2px solid transparent;
    width: 80%;
}
.mission-left-img{
    background: url(../images/Mask\ Group\ 11.webp);
    background-position: center;
    background-size: cover;
    min-height: 300px;
}

.homepageSection4-br{
    /* height: 40px; */
    background: var(--primary-bg-color);
}

.mission-right-text{
    min-height: 300px;
    background-color: #000;
}
#homepageSection7-contactUs ,  #homepageSection6-cert{
    background: #F2EDE6;
    padding: 50px;
    /* padding-top: 20px; */
}
#homepageSection5-industries {
    background: #F2EDE6;
    /* padding-inline: 50px; */
}

.induetries-container{
    background: #000;
}

/* .content-box{
    border-bottom: 2px solid #ffffff8b;
    min-height: 200px;
} */

.img-container{
    height: 263px;
}
.footer-title {
    border-left: 2px solid #fff;
    padding-left: 5px;
}

.footer-invisibleBox{
    height: 80px;
}

.content-box-odd h5, .content-box-odd p , .content-box-even h5 , .content-box-even p {
    width: 60%;

}

.content-box-even{
    align-items: flex-end;
    text-align: end;
}

.content-box-odd{
    align-items: flex-start;
    text-align: start;
}

.content-box:last-child {
    border-bottom: none;
}

.icon-social{
    height: 20px;
}

.footer-icon{
    height: 20px;
}



.homepage-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    /* padding-top: 200px; */
}

.homepage-banner-inner-div {
    width: 90%;
    margin-inline: auto;
}
.font-mmd {
    font-size: 20px;
}
.font-xxxl {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
}

.banner-subtitle-color {
    color: #fff;
    font-weight: var(--default-font-weight-thick);
    line-height: 1.4;
    font-size: 18px;
}

.product-banner-subtitle-color{
    color: #000;
    font-weight: 100;
    line-height: 1.4;
    opacity: 1;
    font-size: 21px;
}

.tertiary-font {
    color: #E0E0E0;
    font-weight: 100;
    opacity: 0.7;
}

.tertiary-text-color {
    color: var(--tertiary-text-color);
}

.width-medium {
    width: 70%;
    margin-inline: auto;
}

.quality-text {
    line-height: 1.5;
}

.section__xl {
    padding: 100px;
}

.quality-font {
    font-size: 19px;
}

.line-height__xl {
    line-height: 1.8;
}

.quality-img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 271 / 233;
    max-height: 250px;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-template-rows: repeat(3, auto); /* Auto height for rows */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    width: 100%;
    margin: 0 auto;
  }
  .grid-item {
    color: white;
    text-align: center;
    padding: 20px;
    /* font-size: 18px; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
  .grid-item.image {
    padding: 0;
  }

  .grid-item.image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .grid-item:nth-child(1) {
    grid-column: 1 / 2; /* Place in the first column */
    grid-row: 2 / 3; /* Place in the second row */
  }
  
  .grid-item:nth-child(2) {
    grid-column: 2 / 3; /* Place in the second column */
    grid-row: 1 / 2; /* Place in the first row */
  }
  
  .grid-item:nth-child(3) {
    grid-column: 2 / 3; /* Place in the second column */
    grid-row: 2 / 3; /* Place in the second row */
  }
  
  .grid-item:nth-child(4) {
    grid-column: 3 / 4; /* Place in the third column */
    grid-row: 1 / 2; /* Place in the first row */
  }
  .grid-item:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    width: 100%;
    /* height: 150px; */
    aspect-ratio: 174 / 150;
}

/* end homepage css */


/* Carousel */

.PostSlide {
    width: 100%;
    position: relative;
}

.innerContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-homepage {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-inline: 40px;
}

.slider-homepage::-webkit-scrollbar {
    display: none;

}
.slide {
    min-width: 253px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.slide.lastSlide {
    padding-right: 0 !important;
    margin-right: 0px !important;
}
.handles button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(255 255 255 / 75%) !important;
    color: #000000;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.dots span {
    height: 10px;
    width: 10px;
    background-color: gray;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    display: none;
}
.handles{
    position: absolute;
    top: 45%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}
.handles .prev {
    left: 29px;
    position: absolute;

}
.handles span{
    aspect-ratio: 1/1;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    padding-inline: 10px;
    justify-content: center;
    align-content: center;
    justify-items: center;
}

.handles .next {
    right: 29px;
    position: absolute;
}



.dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.dots span {
    height: 10px;
    width: 10px;
    background-color: gray;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dots span.active {
    background-color: black;
}
.handles span{
    background: #eeeeee 0% 0% no-repeat padding-box;
    border-radius: 127px;
    opacity: 1;
    box-shadow: 0px 0px 1px 0px #000;
    i {
        color:#656565 !important;
    }
}
.handles span:hover{
    background: #FF7700 0% 0% no-repeat padding-box;
    border-radius: 127px;
    opacity: 1;
    i {
        color:#fff !important;
    }
}
/* End of Carousel */

/* Panel Plywood */
.category-list{
    background: #F2EDE6 ;
}
.categoryText{
    margin-left: 13px;
    cursor: pointer;
}
.categoryText.active , .categoryText:hover{
    border-left: 3px solid var(--primary-bg-color);
    padding-left:10px;
    margin-left: 0;
}
.divider{
    border-top: 1px solid #6c7a89; /* Divider line */
    margin: 40px 0;
}
/* Image container */
.img-container-div:hover{
    .img-overlay {
        opacity: 1;
    }
}
/* Buttons overlay */
.img-overlay {
    position: absolute;
    bottom: 5%;
    /* left: 0; */
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3sease-in-out;
    border-radius: 8px;
}

.overlay-btn { 
    background: none;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    /* aspect-ratio: 1/1; */
    /* width: 90px; */
}
.overlay-btn img {
    aspect-ratio: 1 / 1;
    height: 60px;
    width: 60px;
    object-fit: cover;
    display: flex;
    align-items: center;
}
.overlay-btn:hover {
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #0d6efd !important;
}
/* End of Panel Plywood */


/* Captcha */
.slidercaptcha {
    margin: 0 auto;
    width: 100%;
    height: 350px;
    border-radius: 4px;
    margin-top: 0;
}

.slidercaptcha canvas:first-child {
    border-radius: 5px;
    border: 1px solid #e6e8eb;
}

.sliderContainer {
    position: relative;
    text-align: center;
    line-height: 40px;
    background: #f7f9fa;
    color: #45494c;
    border-radius: 2px;
}

.sliderbg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f7f9fa;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #e6e8eb;
}

.sliderContainer_active .slider {
    top: -1px;
    border: 1px solid #1991FA;
}

.sliderContainer_active .sliderMask {
    border-width: 1px 0 1px 1px;
}

.sliderContainer_success .slider {
        top: -1px;
    border: 1px solid #02c076;
    background-color: #02c076 !important;
    color: #fff;
}

.sliderContainer_success .sliderMask {
    border: 1px solid #52CCBA;
    border-width: 1px 0 1px 1px;
    background-color: #D2F4EF;
}

.sliderContainer_success .sliderIcon:before {
    content: "\f00c";
}

.sliderContainer_fail .slider {
    top: -1px;
    border: 1px solid #f35c59;
    background-color: #f35c59;
    color: #fff;
}

.sliderContainer_fail .sliderMask {
    border: 1px solid #f35c59;
    background-color: #f7dcdd;
    border-width: 1px 0 1px 1px;
}

.sliderContainer_fail .sliderIcon:before {
    content: "\f00d";
}

.sliderContainer_active .sliderText, .sliderContainer_success .sliderText, .sliderContainer_fail .sliderText {
    display: none;
}

.sliderMask {
        position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    border: 0 solid #d1e9fe;
    background: #d1e9fe;    
    border-radius: 2px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background .2s linear;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider:hover {
    background: #009efb;
    color: #fff;
    border-color: #009efb;
}

.slider:hover .sliderIcon {
    background-position: 0 -13px;
}

.sliderText {
    position: relative;
}

.sliderIcon {
}

.refreshIcon {
        position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    padding: 6px;
    color: #fff;
    background-color: #ff4c4c;
    font-size: 14px;
    border-radius: 50px;
}

.refreshIcon:hover {
    color: #fff;
}
.block {
    position: absolute;
    left: 0;
    top: 0;
}
/* End of Captcha */
/* Contact-us */

.top-banner {
    height: 350px;
    /* background: url(../images/e11.webp); */
    background-position: center;
    background-size: cover;
    background-repeat: repeat;        
}
.font-xxl {
    font-size: 40px;
}
.contact-us-innner-div {
    background: var(--default-bg-color);
    /* aspect-ratio: 1 / 1; */
    height: 100%;
    max-height: 300px;
}
.font-dark{
    color: var(--primary-text-color) !important;
}
textarea::placeholder {
    color: #C3C3C3 !important;
    font-weight: var(--default-font-weight-thin) !important;
}
.font-llg{
    font-size:25px;
}
/* End of Contact-us */
.footer-text-color{
    color:#E0E0E0 !important;
}
.footer-text-color:hover{
    color:#E0E0E0 !important;
}
.mobile-header-section {
    margin-inline: auto;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg-color);
    /* border-radius: 31px; */
    opacity: 1;
    backdrop-filter: blur(5px);
    /* top: 25px; */
    width: 100%;
    z-index: 998;
    height: 60px;
    display: flex;
    align-items: center;
}
#footerLine3 a.font-light:hover {
    color: #0E3139 !important;
}

.sawn-img {
    height: 400px;;
}

.page-wrapper {
    padding-top: 110px;
}

.before-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px; /* Line thickness */
    height: 90%; /* Adjust height */
    background-color: #47d20e; /* Line color */ 
}

.font-md-20 {
    font-size: 17px;
}

.list-tick {
    border-radius: 50%;
    background: #4CAF50;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex: 0 0 12%; */
}


.sus-img-container::before {
    display: block;
    padding-top: 65%;
    content: "";
}
.sus-img-containers::before {
    display: block;
    padding-top: 70%;
    content: "";
    aspect-ratio: 9 / 10;
}

.sus-img-2::before {
    padding-top: 100%;
}

.sus-imgs-2::before {
    padding-top: 70%;
}

.sus-inner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sus-inner-containers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.sus-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}




.sus-imgs {
    
    width: 100%;
    object-fit: cover;
}

       
/* .stepper-container {
    position: relative;
    min-height: 10em;
    width: 90%;
  }
   */
  /* .stepper-container::before {
    content: "";
    position: absolute;
    align-self: stretch;
    justify-self: start;
    height: 160%;
    border-left: 2px solid #333;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5));
    height: 100%;
    top: 0;
    left: 0;
  }
   */

 
  
  /* .stepper-container > header {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
  }
   */
  .bead {
    position: relative;
    background-color: #F2EDE6;
    color: #333;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    margin-left: -1.5em;
    margin-right: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1px #ddd;
    border: 3px solid #341515;
    margin-top: -10px;
  }

  .fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in-right.show {
        opacity: 1;
        transform: translateX(0);
    }


  
  .bead.complete {
    background: #c8e6c9;
  }
  
  .bead.current {
    background: #e1f5fe;
  }
  
  .bead.warn {
    background: #fff8e1;
  }
  
  .bead.bad {
    background: #ffebee;
  }
  
  .bead > span {
    font-size: 2rem;
    font-weight: bold;
    white-space: nowrap;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5));
  }
  
  .bead > span > i {
    font-size: 1.8rem;
    font-weight: semibold;
  }

  .year-wording {
    height: 1.5em;
    display: flex;
    align-items: center;
    border-radius: 35px;;
    margin-right: 60px;
    justify-content: center;
    width: 150px;
  }

  .stepper-outer-container {
    display: flex;
  }

  .stepper-content {
    width: 100%;
  }
  
  /* .main-stepper-container .stepper-outer-container:last-of-type .stepper-container::before {
    display: none;
} */
  
  /* .bead::before {
    content: "";
    box-sizing: border-box;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 2px #333;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5));
  } */

  /* .stepper-container::before {
    height: calc(var(--vh, 1vh) * 23) ;
  }
   */
   .banner-backdrop {
        background-color: black;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 100%;
        opacity: 0.4;
    }

    .icon-wrapper {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: white;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hr-underline {
        background-color: white;
        margin-block: 40px;
    }

  .banner-backdrop {
        background-color: black;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 100%;
        opacity: 0.4;
    }

    .icon-wrapper {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: white;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hr-underline {
        background-color: white;
        margin-block: 40px;
    }

    .special-img-height {
        height: 400px!important;
    }

/* Responsive Section */
/* Mobile View */
@media (min-width: 320px) and (max-width: 767px) {
    .grid-item{
        padding: 10px;
        aspect-ratio: 1/1;
    }
    .grid-item.image img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .grid-item:nth-child(5){
        aspect-ratio: 1/1;
    }
    .font-title-mobile{
        font-size: 45px;
    }
    .font-title-mobile-2{
        font-size: 30px;
    }
    .homepage-banner {
        padding-top: 120px!important;
    }

    .width-medium {
        width: 100%;
    }
    .section__xl {
        padding: 40px  !important;
    }
    .h-special {
        height: 200px;
    }
    .img-container {
        height: unset;
        max-height: 300px;
    }  
    .content-box-odd h5, .content-box-odd p , .content-box-even h5 , .content-box-even p {
        width: 100%;
    }
    .content-box-even ,.content-box-odd {
        align-items: flex-start;
        text-align: center;
    }
    .content-box{
        min-height: unset;
    }
    .img-container {
        margin-top: 30px;
    }
    .handles .next {
        right: -10px;
        position: absolute;
    }
    .handles .prev {
        left: -2px;
        position: absolute;
    }
    .homepageSection7{
        width: 100%;
    }
    #homepageSection7-contactUs ,  #homepageSection6-cert{
        background: #F2EDE6;
        padding: 30px;
        padding-top: 20px;
    }
    #homepageSection5-industries {
        background: #F2EDE6;
        padding: 30px;
        padding-inline: 0;
    }
    #homepageSection3-whoweare{
        padding: 30px;
        background: #EAEAEA;
    }
    .link-to-page a{
        cursor: pointer;
    }
    .link-to-page a:hover{
        color: var(--primary-text-color);
    }
    .footer-invisibleBox{
        height: 0px;
    }

    .stepper-container {
        min-height: 7em;
        width: 100%;
    }

    .bead > span {
        font-size: 1rem;
    }

    .bead {
        margin-left: -1.5em;
    }

    .stepper-content {
        width: 90%;
        font-size: 15px;
    }

    /* .stepper-container::before {
        height: 238%;
    } */
    /* .stepper-container::before {
        height: calc(var(--vh, 1vh) * 31) ;
    } */

    .font-lg-mobile {
        font-size: 15px;
    }

    .page-wrapper {
        padding-top: 0;
    }

    .img-fluid-serve {
        margin: auto; /* Centers the image */
    }

    .hover-box {
        left: 50%!important;
        transform: translateX(-50%);
        width: 90%; /* Adjusts width for small screens */
        height: auto;
        padding: 10px;
    }

    #development-label {
        top: 5% !important;  /* Moves text to the top of the map */
        left: 50% !important; /* Center horizontally */
        transform: translateX(-50%) !important; /* Keep it centered */
        text-align: center !important;
        width: 100% !important; /* Full width to keep it centered */
    }
    
    .development-title {
        font-size: 25px!important;  /* Smaller title */
        font-weight: bold;
    }
    .development-subtitle {
        font-size: 10px!important; /* Smaller subtitle */
        font-weight: bold;
    }


    .time{
        padding:0 !important;
    }
    .year-wording {
        height: 1.5em;
        display: none;
      }
      
      .step:last-child .step-context::before {
        height: 100px!important;
      }

    #bead1::after {
    display: flex;
    content: "2025"!important;
    color: #F2EDE6;
    font-weight: bold;
    width: 5em;
    height: 5em;
    align-items: center;
    justify-content: center;
    }
    
    
        #bead2::after{
        display: flex;
        content: "2022"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
        top: 50px !important;
        }
    
        #bead3::after{
        display: flex;
        content: "2021"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
    }

    #bead4::after{
        display: flex;
        content: "2019"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
        top: 100px !important;
    }

    .sus-img-container::before {
        display: block;
        padding-top: 110%;
        content: "";
    }

    .font-xl, .font-xxl {
        font-size: 30px!important;
    }

    .font-md-20 {
        font-size: 17px;;
    }

    .stepper-container {
        padding-inline: 10px;
    }

    .step-heading, .time{
        font-size: 15px!important;
    }

    .sus-inner-containers {
        padding: 10px;
    }
}



/* Ipad View */
@media (min-width: 768px) and (max-width: 990px) {

    .h-special {
        height: 250px;
    }
    
    .section__xl {
        padding: 40px;
        /* padding-block: 100px; */
    }

    .sus-img-container::before {
        display: block;
        padding-top: 150%;
        content: "";
    }
    .sus-img-containers::before {
        display: block;
        padding-top: 220%;
        content: "";
        aspect-ratio: 10 / 10;
    }
    .img-fluid-serve {
        margin: auto; /* Centers the image */
    }

    .hover-box {
        left: 50%!important;
        transform: translateX(-50%);
        width: 90%; /* Adjusts width for small screens */
        height: auto;
        padding: 10px;
    }

    /* .stepper-container::before {
        left: 15px;
        height: 210%;
    } */
    .stepper-container::before {
        left: 15px;
        height: calc(var(--vh, 1vh) * 30) ;
      }

    .bead {
        width: 5em;
        height: 5em;
    }

    .page-wrapper {
        padding-top: 0;
    }
    /* .grid-item.grid-item-second  {
        height: 116px;
    }
     */


    .time{
        padding:0 !important;
    }
    .year-wording {
        height: 1.5em;
        display: none;
      }
      
      .step:last-child .step-context::before {
        height: 80px!important;
      }

    #bead1::after {
    display: flex;
    content: "2025"!important;
    color: #F2EDE6;
    font-weight: bold;
    width: 5em;
    height: 5em;
    align-items: center;
    justify-content: center;
    }
    
    
        #bead2::after{
        display: flex;
        content: "2022"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
        top: 20px !important;
        }
    
        #bead3::after{
        display: flex;
        content: "2021"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
    }

    #bead4::after{
        display: flex;
        content: "2019"!important;
        color: #F2EDE6;
        font-weight: bold;
        width: 5em;
        height: 5em;
        align-items: center;
        justify-content: center;
        top: 40px !important;
    }

}

/* Ipad Pro View */
@media (min-width: 991px) and (max-width: 1199px) {
    .h-special {
        height: 250px;
    }

    .sus-img-container::before {
        display: block;
        padding-top: 100%!important;
        content: "";
    }
    .sus-img-containers::before {
        display: block;
        padding-top: 150%;
        content: "";
        aspect-ratio: 10 / 10;
    }

    .img-fluid-serve {
        margin: auto; /* Centers the image */
    }

    .hover-box {
        left: 50%!important;
        transform: translateX(-50%);
        width: 90%; /* Adjusts width for small screens */
        height: auto;
        padding: 10px;
    }

    .bead {
        margin-top: -45px;

    }
    .sustainimg {
        height: 605px;
        width: 100%;
        object-fit: cover;  
    }
}
@media (max-width: 990px) {
    .mobileSidebar {
        width: 100% !important;
        z-index: 999;
        background: var(--header-bg-color) !important;
    }

    .mobileSidebar{
        left: -100% !important
    }
    .mobileSidebar.open {
        left: 0 !important;
        transition: 0.3s ease;
        width: 40%;
    }
    .closeSidebar {
        font-size: 30px;
        color: #cbcbcb;
    }
    .quality-font {
        font-size: 16px;
    }
    .grid-item:nth-child(1) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .grid-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .grid-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .grid-item:nth-child(4) {
        grid-column: 2/3;
        grid-row: 1 / 2;
    }
    .grid-item:nth-child(5){
        grid-column: 1 / 2;
    }
    .grid-item:nth-child(6){
        grid-column: 2 / 2;
        grid-row: 3 / 4;
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #42676F;
    }
    .header_menu_mobile_div{
        padding: 15px;
        border-radius: 34px;
    }
    .header_menu_mobile_div.active-parent{
        background: #E0E0E0;
        
    }

    .header_menu_mobile_div.active-parent a{
        color: #000;
      
    }
    .header_menu_mobile_div:hover{
        background: #E0E0E0;
     
    }
    #product-banner-bg-mobile , .top-banner {
      
        height: 250px;
    }
    .homepage_footer_logo{
        width: 200px !important;
    }
    .padding-mobile-footer {
        padding: 20px !important;
    }
    .footer-content-div{
        text-align: center;
    }
    .footer-content-outer-div{
        justify-content: center;
    }

    .img-container {
        height: unset;
        max-height: 300px;
    }  
    .content-box-odd h5, .content-box-odd p , .content-box-even h5 , .content-box-even p {
        width: 100%;
    }
    .content-box-even ,.content-box-odd {
        align-items: flex-start;
        text-align: center;
    }
    .content-box{
        min-height: unset;
    }
    .img-container {
        margin-top: 30px;
    }
    .handles .next {
        right: -10px;
        position: absolute;
    }
    .handles .prev {
        left: -2px;
        position: absolute;
    }
    .homepageSection7{
        width: 100%;
    }
    #homepageSection7-contactUs ,  #homepageSection6-cert{
        background: #F2EDE6;
        padding: 30px;
        padding-top: 20px;
    }
    #homepageSection5-industries {
        background: #F2EDE6;
        padding: 30px;
        padding-inline: 0;
    }
    #homepageSection3-whoweare{
        padding: 30px;
        background: #EAEAEA;
    }

    
    .link-to-page a{
        cursor: pointer;
    }
    .link-to-page a:hover{
        color: var(--primary-text-color);
    }
    .footer-invisibleBox{
        height: 0px;
    }
    .img-container {
        display: flex;
        justify-content: center;
    }
    .product-banner-subtitle-color{
        font-size: 20px;
    }   
    .sustainimg {
        height: 749px;
        width: 100%;
        object-fit: cover;  
    }
}


/*for pdf link underline*/
.text-underline_pdf {
    color: #003976;
    text-decoration: underline;
  
  }
  .link-container {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping on large screens */
    gap: 10px; /* Adds spacing between items */
    align-items: center;
    justify-content: flex-start; /* Aligns links to the left */
  }
  
  .separator {
    margin: 0 20px; /* Space around the separator */
  }
  
  /* Mobile Responsive: Stack links on small screens */
  @media (max-width: 576px) { 
    .link-container {
        flex-wrap: wrap; /* Allows wrapping only on small screens */
        flex-direction: column; /* Stack links vertically */
        text-align: left; /* Align text to the left */
        align-items: flex-start; /* Ensure left alignment */
        gap: 20px;
    }
  
    .separator {
        display: none; /* Hide | separator on mobile */
    }

}

/*=============================================================================*/
/* --- homepage image --- */
.img-fluid-serve{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;

}

/* ---  --- */
.font-white {
    color: #ffffff;
}
.image-container-specialty, 
.image-container-Commercial {
    position: relative;
    width: 100%;
    max-width: 825px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* --- Make Images Fully Responsive --- */
.image-container-specialty img, 
.image-container-Commercial img {
    width: 100%;
    height: 320px;
    display: block;
    max-width: 825px;
    margin: 0 auto;
}

/* --- Auto-Centering Overlay Text --- */
.overlay-text {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: transparent;
    padding: 2vw; /* Adjust padding dynamically */
    border-radius: 8px;
    width: 80%;
    max-width: 700px;
    white-space: normal;
}

/* --- Title & Subtitle Auto-Sizing --- */
.overlay-text h2 {
    font-size: 30px; /* Scale dynamically */
    margin-top: 10px;
}
.overlay-text p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 600px;
    text-align: center;
    display: inline-block;
}

/* --- Certification Section --- */
.certification-title {
    font-weight: bold;
    margin-bottom: 0;
}

.certification-list {
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

.certification-list li {
    list-style-type: decimal;
    margin: 0;
    padding: 0;
}

/* --- PDF Link Styling --- */
.text-underline_pdf {
    text-decoration: underline;
    color: #0056b3;
}

.text-underline_pdf:hover {
    color: #ff6600;
}

/* --- Mobile View Adjustments --- */
@media (max-width: 760px) {  

    .overlay-text {
        width: 90%;
    }

    .overlay-text h2 {
        margin-top: 10px;
        font-size: 15px; /* Ensure readability */
    }

    .overlay-text p {
        margin-top: 5px;
        font-size: 10px;
    }

    .image-container-specialty img, 
.image-container-Commercial img {
    width: 100%;
    height: 140px;
    display: block;
    max-width: 825px;
    margin-top: 20px;
    margin-bottom: 20px;
}
}

/*Sustainability Quality Control*/


.image-container-sustain {
    position: relative;
    width: 100%;
    max-width: auto;
    

}



/* --- Auto-Centering Overlay Text --- */


strong {
    color: white;
    font-weight: bold;
    display: block; /* Ensures it respects text alignment */
    text-align: center;
}

.spec-text {
    white-space: pre-line; /* Preserves line breaks and wraps long lines */
    font-family: inherit; /* Keeps the same font as the rest of the page */
    margin: 0;
    padding-left: 20px; /* Adds left padding for better readability */
    line-height: 1.5; /* Improves spacing between lines */
    text-indent: -20px; /* Pulls first line back to align with the rest */
  }

.sustain-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.overlay-container-sustain-right {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5%;
}

.overlay-container-sustain-left {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5%;
}

.overlay-text-sustain {
    background: rgba(6, 78, 66, 0.7);
    color: white;
    padding: 2vw;
    border-radius: 8px;
    max-width: 550px;
    white-space: normal;
    text-align: left;
    font-weight: normal;
}

.overlay-text-sustain h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.overlay-text-sustain ul {
    padding-left: 20px;
    list-style-type: disc;
}

.overlay-text-sustain li {
    font-size: 15px;
}

@media (max-width: 500px) {
    .sustain-section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .overlay-container-sustain {
        flex-direction: column;
        padding: 10%;
    }
    .overlay-text-sustain {
        max-width: 90%;
        padding: 5vw;
    }

    .overlay-container-sustain-right,
    .overlay-container-sustain-left {
        display: flex;
        justify-content: center;  /* Center horizontally */
        align-items: center;      /* Center vertically */
        width: 100%;
        height: 100%;
        padding: 5%;
    }
    
}


.img-containers {
    position: relative;
    display: inline-block;
    padding-inline: 0;
}


.hover-box {
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 50%; /* Covers 50% of the image */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* Prevents blocking clicks */
    
}

.img-containers:hover .hover-box {
    opacity: 1;
    visibility: visible;
}

.no-tel {
    pointer-events: none;
    user-select: none;
    color: #ffffff!important;
    font-size: 11px;
    font-family: "MainFont", "Konnect", sans-serif;
}


.clickable {
    cursor: pointer;
}


#development-label {
    position: absolute;
    top: 40%;
    left: 5%;
    text-align: right;
    color: black;
    z-index: 400;
    text-align: center;
}
.development-title {
    font-size: 32px;  /* Bigger text */
    font-weight: bold;
}
.development-subtitle {
    font-size: 16px;  /* Smaller text */
    font-weight: bold;
}
/*===================================================================*/


@media (max-width: 1199px) and (min-width: 990px) {
    .col-ipad-pro-12 {
      -webkit-box-flex:
  0;
      -ms-flex: 0 0 100%;
      flex:
  0 0 100%;
      max-width: 100%;
    }
}


  .stepper-container ul {
    /* list-style: none; */
  }
  .steps {
    margin: 0 auto;
    padding: 1rem 0;
  }

  .step {
    display: flex;
  }
  .dates {
    display: flex;
    flex-direction: column;
  }
  .step-context {
    display: flex;
    flex-direction: column;
    padding: 0 1rem 1rem 50px;
    position: relative;
    padding-bottom: 75px;
    content: "";
    /* align-self: stretch; */
    /* border-left: 2px solid #333; */
    /* filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5)); */
    height: 100%;
    top: 0;
    left: 0;
  }

  .first-step .step-context::before {
    left: 0%;
  }

  /* .step-context::before {
    content: " ";
    border-left: 1px solid black;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  } */

  .step-heading, .time {
    line-height: 1.7;
  }

  .time::after {
    content: " ";
    position: absolute;
    right: -40%;
    top: 0;
    z-index: 2;
    transform: translateX(50%);
    background-color: red;
    color: #333;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    /* margin-left: -1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1px #ddd;
    border: 3px solid #341515;
    margin-top: -10px; */
  }

  .time {
    position: relative;
    padding: 0 50px;
  }

  /* .main-stepper-container .step:last-child .step-context::before {
    height: 0;
    display: none;
  } */
    /* .main-stepper-container .stepper-outer-container:last-of-type .stepper-container::before {
    display: none;
} */

.step:last-child .step-context::before { 
    height: 45px;
}

.timeline-circle {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    left: 50px; /* Or whatever lines up */
}
.step-context::before {
    content: " ";
    border-left: 2px solid black;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Ensure the line appears below the circle */
}

#bead1::after, #bead2::after, #bead3::after, #bead4::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    z-index: 2; /* Ensure the circle is above the line */
    background: radial-gradient(
      circle,
      #341515 var(--fill, 0%),
      transparent var(--fill, 0%)
    );
    box-shadow: 0 0 0 3px #341515; /* ring border */
    transition: background 0.3s ease;
    background-color: #F2EDE6; /* Solid fill */
}




