:root {
    --deep-blue : #1662DC;
    --light-blue: #f78132;
    --very-light-blue: #E7E9EB;
    --very-light-blue2: #F1F6FC;
    --section-title: var(--deep-blue);
    --card-background: #FCF5E5;
    --product-of-color: #b91d47;
    --title-panel: #1c5510;
    /* --cream-color : #F1F6FC; */
    --cream-color : #f4f5f6;
    --hover-color: var(--title-panel);
    --border-style: 1px solid var(--deep-blue);
    --button-back: #d9212c;

    --card-info-margin : 0px 5px;
    --card-border-radius: 10px;
    --element-border-radius: 9px;
    --title: 32px;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

*{
    transition: 300ms;
}

.backgroundcolor{
    background-color: var(--title-panel) !important; 
}
.title-bn-custom{
    font-weight: bold; 
    text-align: left;
}

.title-en-custom{
    text-align: left;
}
.logo-img-custom{
    width:75px;
}
.banner-container-c{
    width: 100%;
    height: min(50vw,500px);
}
.banner-img-custom{
    width: 100%;
    height: 100%;
    /* padding: 10px 30px; */
    object-fit:contain;
    border-radius: 5px;
}
.product-img-custom{
    width: 100%;
    height: 100%;
}
/* new product */
.our-product{
    background-image: linear-gradient(to right, var(--cream-color) , #ffffff);
    padding: 10px 0px;
    margin: 10px 0px;
}
.our-product-title .h2-title{
    text-align: center;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}
.h2-title .title-span{
    color: var(--light-blue);
    font-size: 24px;
}
.hide-search{
    display: none;
}
.search-body{
    width: max(30%,300px);
    background-color: var(--title-panel);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: scroll;
    z-index: 10000;
}
.search-close-menu{
    margin-top: 20px;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: right;
}
.search-close{
    margin-right: 20px;
    background-color: transparent;
    padding: 3px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
}
.search{
    background-color: red;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: transparent;
}
.search .search-f{
    width: 90%;
    padding: 0px 10px;
    border-radius: 5px;
    height: 40px;
    margin: 0px 20px;
    border: 1px solid var(--light-blue);
}
.search .search-b{
    height: 40px;
    text-decoration: none;
    background-image: linear-gradient(to right, var(--cream-color) , #ffffff);
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    width: 100px;
    margin: 10px 20px;
    border-radius: 5px;
}
.product-body{
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.product-card{
    overflow:hidden;
    width: 300px !important;
    max-width: auto;
    min-height: 450px;
    margin: 10px 15px;
    border: var(--border-style);
    border-radius: var(--card-border-radius);
    background-color: #ffffff;
    cursor: pointer;
    transition: transform .3s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* .product-card:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, .60);
    transform: scale(1.01);
} */
.product-card .image{
    width: 100%;
    height: 250px;
    
    border-radius: var(--element-border-radius) var(--element-border-radius) 0px 0px;
    /* background-color: #f96f2b; */
    background-color: var(--title-panel);
}
.product-card-body{
    min-height: 180px;
    background-color: #ffffff;
}

.product-card-body .title{
    text-align: center;
    margin-top: 5px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--deep-blue);
    font-size: 22px;
}
.title-span-header{
    background-color: var(--button-back);
    color: white;
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 14px;
}
.product-card-body .product-of{
    margin: var(--card-info-margin);
    font-size: 15px;
    color: black;
}
.product-card-body .industry{
    margin: var(--card-info-margin);
    font-weight: 600;
    text-align: left;
}
.product-card-body .industry .link{
    color: var(--light-blue);
    
}

.product-card-body .link:hover{
    color: var(--hover-color);
    text-decoration: underline;
}
.divider{
    margin: 5px 0px;
    width: 100%;
    height: 2px;
    background-color: #603cba;
}
.product-card-body .contact{
   text-align: center;
   font-size: 20;
   font-weight: 800;
   color:  var(--title-panel); 
}
.product-card-body .pera{
    text-align: left;
    margin: var(--card-info-margin);
}
.pera .icon{
    color: var(--product-of-color);
}
.pera .icon-for-phone{
    color: #035F5D;
    font-weight: 900;
    font-size: 20px;
}
.pera .icon-for-email{
    color: #060270;
    font-weight: 900;
    font-size: 20px;
}
.pera .span-number{
    font-size: 18px;
    font-weight: 600;
    color: var(--light-blue);
}
.pera .span-number:hover{
    color: var(--hover-color);
    text-decoration: underline;
}
.span-number .tooltiptext {
    display: none;
    width: auto;
    background-color: black;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
  
    /* Position the tooltip */
}
.span-number:hover .tooltiptext{
    display: block;
}
.contacts-icon{
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    padding: 2px 0px;
    background-color: #304146;
    border-radius: 0px 0px var(--element-border-radius) var(--element-border-radius);
}
.contacts-icon .contact-icon{
    margin: 0px 20px;
}
.contact-icon .contact-image{
    width: 30px;
    aspect-ratio: 1/1;
}
.contact-icon .c-icon{
    font-size: 16px;
    color: white;       
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}
.contact-icon .c-icon:hover{
    color: #f50057;
}
.contact-icon .link-text{
    color: white;
}
.contact-icon .link-text:hover{
    color: #f50057;
}

.product-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0px;
}

.p-footer-element .footer-link{
    display: block;
    padding: 10px 50px;
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}
.p-footer-element .footer-link:hover{
    color: var(--title-panel);
    border: 2px solid var(--title-panel);
}
/* our service */
.our-service{
    width: 100%;
    padding: 20px 0px;
    height:auto ;
    background-color: var(--cream-color);
    margin: 5px 0px;
}
.s-title{
    text-align: center;
    font-size: var(--title);
    font-weight: 700;
    color: var(--deep-blue);
}
.s-contact{
    text-align: center;
    color: var(--title-panel);
    font-weight: 500;
}
.scon-button{
    color: var(--light-blue);
    font-weight: 500;
}
.service-body{
    width: 100%;
    height: auto;
    margin: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 10px 0px;
    /* flex-direction: column; */
}
.service-image{
    width: 40%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    /* border: 1px solid red; */
}
.s-image{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}
.service-card{
    width: 50%;
    height: 100%;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.s-address{
    text-align: center;
    font-size: 22px;
    color: var(--title-panel);
    font-weight: 700;
    margin: 5px 0px;
}
.sc-email{
    color: var(--light-blue);
    font-size: 15px;
    font-weight: 500;
}
.sc-button{
    
    border: none;
    color: #ffffff;
    background-color: var(--button-back);
    border: 1px solid var(--light-blue);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: 300ms;
    border-radius: 5px;
}
.sc-button:hover{
    background-color: var(--title-panel);
    color: white;
    /* background-color: var(--light-blue); */
}
.left-margin-5px{
    margin-left: 5px;
}
.over-flow{
    overflow:scroll;
}
/* product intro */
.product-i{
    width: 100%;
    height: auto;
    background-color: var(--cream-color);
    margin: 10px 0px;
    padding: 10px 0px;
}
.product-i-head{
    text-align: center;
    margin: 10px 0px;
}
.product-i-title{
    font-size: var(--title);
    color: var(--deep-blue);
    font-weight: 700;
    
}
.product-i-subtitle{
    font-weight: 700;
}
.product-i-body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.product-i-card{
    width: 250px;
    height: 200px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.product-i-card:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.89);

}
.picf-title{
    color: var(--light-blue);
    font-weight: 700;
}
.picft-link{
    color: var(--light-blue);
}
.picft-link:hover{
    text-decoration: underline;
    color: var(--title-panel);
}
.product-i-card-footer{
    margin: 10px 0px;
}
/* business entites */
.b-ent-custom{
    width: 100%;
    height: auto;
    background-color: var(--cream-color);
}
.b-e-title{
    width: 100%;
    text-align: center;
    /* border: 1px solid red; */
    margin: 10px 0px;
}
.b-e-title-h2{
    font-size: var(--title);
    color: var(--deep-blue);
    font-weight: 700;
}
.b-e-body{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    margin: 10px;
    
}
.b-e-card{
    overflow: auto;
    min-width: 300px;
    border: 1px solid var(--deep-blue);
    border-radius: 10px;
    margin: 10px 5px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.b-e-card:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.89);
    border: 1px solid var(--light-blue);

}
.b-e-c-head{
    width: 100%;
    /* height: 50px; */
    /* border: 1px solid red; */
}
.b-e-c-title{
    margin: 10px 5px;
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    color: var(--title-panel);
}
.b-e-c-c-details{
    margin: 0px 12px;
}
.b-e-c-body{
    /* border: 1px solid var(--deep-blue); */
    margin-top: 20px;
    padding: 0px 5px;
    border-radius: 5px;
    min-height: 120px;

}
.b-e-c-body-contact{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--title-panel);
}
.b-e-c-dealers{
    display: inline-block;
    color: var(--title-panel);
    font-weight: 700;
    margin-bottom: 5px;
}
/* new_product_section */
.new-product-container{
    width: 100%;
    height: auto;
}
.npc-title{
    text-align: center;
    color: var(--deep-blue);
    font-size: var(--title);
    font-weight: 700;
    margin: 10px;
}
.np-body{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.np-hide{
    display: none !important;
}
.np-section-one {
    width: 60%;
    height: 500px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-for-phone-g{
    width: 25px;
    aspect-ratio: 1/1;
}


.np-card{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.npc-image-container{
    width: 40%;
    height: 500px;
    background-color: var(--title-panel);
    border-radius: 10px;
    margin: 0px 10px;
}
.npc-image{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* padding: 5px; */
    object-fit: contain;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.npc-card-body{
    margin: 0px 10px;
    width: 60%;
    height: auto;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.npc-card-logo{
    margin: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.npcc-title{
    text-align: center;
    color: var(--light-blue);
    margin: 10px 0px;
    font-size: 24px;
    font-weight: 600;
}
.npcc-subheader{
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}
.npcc-subtitle{
    text-align: center;
    color: var(--light-blue);
    font-size: 20px;
    font-weight: 600;
}
.npcc-subtitle-a{
    color: var(--light-blue);
}
.npcc-subtitle-a:hover{
    text-decoration: underline;
    color: var(--title-panel);
}
.npcc-contact{
    color: var(--title-panel);
    font-weight: 700;
    font-size: 22px;
}
.mg-top-10{
    margin: 10px 0px;
}

.np-section-two{
    width: 40%;
    height: 500px;
    margin: 0px 10px;
}
.np-sec-two-body{
    display: flex;
    width: 100%;
    /* height: 100%; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: auto;

}
.sec2card{
    width: 250px;
    height: auto;
    margin: 10px;
    border: 1px solid var(--deep-blue);
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.stc-title{
    font-size: 14px;
    font-weight: 700;
    color: var(--light-blue);
    margin: 5px 10px;
    text-align: center;
}
.stct-link{
    color: var(--light-blue);
}
.stct-link:hover{
    color: var(--title-panel);
    text-decoration: underline;
}
/* welfare container css */
/* welfare_container */
.welfare-main{
    width: 100%;
    height: auto;
    margin: 20px 0px;
    background-color: var(--cream-color);
}
.welfare-title{
    text-align: center;
    color: var(--deep-blue);
    margin: 10px 0px;
    font-weight: 700;
    font-size: var(--title);
}
.ws-container{
    width: 100%;
    height: auto;
    margin: 5px 0px;
}
.wf-container{
    padding: 10px;
  background: white;
  box-sizing: border-box;
  resize: horizontal;
  border: 1px dashed;
  width: 100%;
  height: max(30vw,400px);
  border-radius: 5px;
}
.wf-card{
width: 100%;
  /* padding-bottom: 1%; */
  height: 80%;
  background: var(--title-panel);
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}
.wfc-link{
    font-size: 16px;
    color: var(--light-blue);
    text-align: center;
    display: inline-block;
    width: 100%;
    height: auto;
    cursor: pointer;
}
.wfc-link:hover{
    color: var(--title-panel);
    text-decoration: underline;
}
.wfc-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}
.extra-margin{
    width: 100%;
    height: 10px;
    background-color: var(--cream-color);
}
/* footer section */

.video-footer{
    display: flex;
    align-items: center;
    justify-content: center;
}

.videof-link{
    display: block;
    padding: 10px 50px;
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}
.videof-link:hover{
    color: var(--title-panel);
    border: 2px solid var(--title-panel);
}
.search-link{
    position: absolute;
    top: 100%;
    right: 0px;
    background-color: var(--title-panel);
    color: white;
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px 0px 0px 5px;
    display: inline-block;
    z-index: 1000;
    cursor: pointer;
}
/* search css */
.search-link:hover{
    color: var(--light-blue);
}
/* product page css */
.s-product-container{
    width: 100%;
    height: 100%;
}
.sp-title-content{
    font-size: min(10vw, 32px);
}
.s-product-card-container{
    width: 100%;
    height: auto;
    display: flex;
    margin: 10px 0px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.sp-card{
    overflow: hidden;
    width: min(90vw,300px);
    min-height: min(100vw,450px);
    border: 1px solid var(--deep-blue);
    margin: 10px;
    border-radius: 5px;
}
.sp-i-container{
    width: 100%;
    height: 200px;
    background-color: var(--title-panel);
}
.spi-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sp-body{
    width: 100%;
    height: auto;
    padding: 0px 10px;
}
.sp-title{
    text-align: center;
    color: var(--light-blue);
    font-size: min(6vw,24px);
    margin-bottom: 10px;
}
.sp-product-of{
    font-size: min(4vw,16px);
    line-height: 3px;
    margin: 2px 0px;
}
.sp-p-link{
    display: inline-block;
    text-decoration: none;
    color: var(--title-panel);
    font-size: min(4vw,18px);
    text-align: left;
    font-weight: 500;
    line-height: 20px;
    margin: 5px 0px;

}
.sp-p-link:hover{
    text-decoration: underline;
    color: var(--title-panel);
}
.sp-contact{
    text-align: center;
    color: var(--title-panel);
    font-size: min(4vw,20px);
    font-weight: 700;
    margin-bottom: 5px;
}
.sp-c-p{
    line-height: 2px;
}
.sp-c-icon{
    color: var(--product-of-color);
    font-size: min(5vw,18px);
    font-weight: 700;
}
.sp-c-link{
    color: var(--light-blue);
    font-size: min(5vw,18px);
    margin: 0px;
    font-weight: 700;
}
.sp-c-link:hover{
    color: var(--title-panel);
}
.sp-extra-margin{
    margin: 5px 0px;
}
.sp-footer{
    margin-top: 20px;
    width: 100%;
    height: 35px;
    display: flex;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 4px 4px;
    background-color: var(--title-panel);
}
.sp-footer-e{
    /* width: 33%; */
    margin: 0px 10px;
    border-radius: 10px;
}
.sp-f-e-link{
    color: white;
    font-size: min(5vw,18px);
    text-align: center;
}
.sp-f-e-link .spfel-image{
    width: 30px;
    aspect-ratio: 1/1;
}
@media only screen and (max-width: 1000px) {
    .service-body{
        flex-direction: column;
    }
    .s-address{
        font-size: 15px;
    }

    .sc-button{
        font-size: 12px;
        font-weight: 700;
        padding: 10px 30px;
    }
    .service-image{
        width: 100%;
    }
    .s-image{
        object-fit: cover;
    }
}
@media only screen and (max-width: 810px){
    .product-i-body{
        display: none !important;
    }

}
@media only screen and (max-width: 800px){
   .np-body{
    flex-wrap: wrap;
   }
   .np-section-two{
    width: 100%;
    height: 250px;
    margin-top: 20px;
   }
   .np-section-one{
       width: 100%;
       height: 650px;
    }
    .np-card{
        flex-direction: column;
        height: auto;
    }
    .npc-image-container{
        width: 50%;
        max-height:300px;
        margin: 10px 0px;
    }
    .npc-card-body{
        width: 90%;
    }
    .np-sec-two-body{
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
   .sec2card{
    min-width: 250px;
    height: auto;
   }
}
@media only screen and (max-width: 1030px){
    .product-body{
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: flex-start;
    }
    .product-card{
        min-width: 300px;
        min-height: 450px;
    }
    
}
@media only screen and (max-width: 381px) {
    .title-bn-custom{
        font-size: 18px;
        font-weight: 800;
    }
    .title-en-custom{
        font-size: 18px;
        font-weight: 800;
    }
    .logo-img-custom{
        width: 65px;
    }
    .s-title{
        font-size: 26px;
    }
    .s-contact{
        font-size: 14px;
    }
  }

  @media only screen and (max-width: 357px) {
    .title-bn-custom{
        font-size: 15px;
        font-weight: 800;
    }
    .title-en-custom{
        font-size: 15px;
        font-weight: 800;
    }
    .logo-img-custom{
        width: 50px;
    }
  }