*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    text-decoration: none;
    color: black;
}
.main{
    overflow: hidden;
}


/*=========--Header --==========*/
.header{
    position: sticky;
    top: 0;
}
.hfirstsec{
    display: flex;
    height: 8vh;
    justify-content: space-between;
    padding: 0 5vw ;
    align-items: center;
    background-color: #1E1E2A;
    color: white;
    font-size: 0.9vw;
}
.hfirstsec i{
    padding: 1vw 1vw ;
}
.imgsec{
    background-color: #073B66;
}

.hsecondsec{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 22vh;
    /* background-color: black; */
}
.hsecondsec >div{
    display: grid;
    grid-template-columns: 20% 70%;
    align-items: center;
}
.hsecondsec i{
    color: #7E99A3;
    font-size: 2vw;
}
.hsecondsec b{
    color: #7E99A3;
}
.hsecondsec p{
    font-size: 0.8vw;
}



.hthirdsec>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw;
    background-color: black;
}
.hthirdsec ul {
    display: flex;
    list-style-type: none;
    position: relative;
}
.hthirdsec li>a{
    padding: 2vw 1vw ;
    color: white;
    text-decoration: none;
    font-weight: bolder;
}
.hthirdsec button{
    background-color: #4C585B;
    border: none;
}
.hthirdsec button a{
    padding: 1vw ;
    color: white;
    background-color: #4C585B;
    border-radius: 0.7vw;
}
.dropdown-content{
    position: absolute;
    background-color: white;
    display: none;
    grid-template-columns: 100%;
    top: 200%;
    min-width: 60vh;   
    padding: 1vw 0.5vw; 
    z-index: 999;
    overflow-y:auto;
    height: 60vh;
}

.dropdown-content::-webkit-scrollbar{
    display: none;
}
.dropdown-content a{
    padding: 0.5vw 1vw;
    color: black!important;
    position: relative;
}
.dropdown:hover .dropdown-content{
    display: grid;
}
.dropdown-content a:hover{
    color: #FF6620 !important;
}
.hthirdsec a:hover{
    color: #FF6620;
}


/*========= Banner Images ===========*/


.sliderimages{
    width: 100%;
    height: 90vh;
    background:linear-gradient(to right ,#7E99A3,#A5BFCC , #F4EDD3 );
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    margin-left: 0!important;
}
.sliderimages img{
    width: 100%;
    z-index: 9;
}
.welcome{
    padding: 0.5vw 2vw ;
    background-color: rgba(255, 255, 255, 0.384);
    border-radius: 6vw;
    border: none;
}
.welcome a{
    color: white ;
}
.sliderimages b{
    font-size: 3vw;
    color: white;
    padding: 1vw 0;    
}
.sliderimages p{
    color: white;
    padding: 1vw 0;
}
.contactbtn{
    padding: 1vw 2vw ;
    background-color:#FF6620;
    transition: 0.4s all ;

}.contactbtn a{
    color: white;
    transition: 0.4s all ;
}
.contactbtn:hover{
    background-color: white;
    transition: 0.4s all ;
}
.contactbtn:hover a{
    color:#FF6620;
    text-decoration: none;
    transition: 0.4s all;
}


/*===========Content 1 ===========*/
.cont1sec{
    display: grid;
    grid-template-columns: 50% 50% ;
    padding: 1vw 5vw;

}
.cont1imgsec img{
    padding: 0 6vw 0 0;
    border-right: solid #7E99A3 0.5px;
}
.cont1contsec h5{
    padding: 0.4vw 1vw;
    border-left: 2px solid #FF6620;
    font-size: 0.9vw ;
    font-family: monospace;
}
.cont1contsec h1{
    font-weight: bolder;
    color: #073B66;
}
.cont1contsec span{
    font-weight: bolder;
}
.cont1contsec p{
    font-size: 1vw;
}
.cont1contsec button{
    background-color: #7E99A3;
    padding: 1vw 2vw ;
    color: white;
    border: white;
}

/*============ Content 2============*/
.cont2sec{
    margin: 5vw 0 0 ;
    padding: 1vw 4vw;
    display: flex;
    align-items: center;
    height: 35vh ;
    background-color: #F2F3F6;
}
.cont2sec h1{
    font-weight: bolder;
    color: #073B66;
    font-size: 2.6vw;
}
.cont2sec button{
    background-color: #7E99A3;
    padding: 1vw 2vw;
    border: white;
    color: white;
    
}
/*======= Coontent 3 =========*/
.cont3sec{
    padding: 2vw 0;
    text-align: center ;
    height: 90vh ;
    background-color: #222A3E;
    color: white;
}
.cont3sec h5{
    font-family: monospace;
    letter-spacing: 2px;
}
.cont3sec .box{
    width: 50vh;
    height: 60vh;
    background:linear-gradient(to bottom ,white ,grey, grey, black);
    position: relative;
    transition: 0.4s all;
}
.cont3sec .box img {
    width: 100%;
    height: 100%;
}
.box p{
    position: absolute;
    bottom: 10%;
    color: white;
    font-weight: bolder;
    font-size: 1.1vw;

}
.cont3secproduct{
    padding: 4vw 0 ;
    display: flex;
    justify-content: space-around;

}
.box:hover {
    background-image: linear-gradient(to bottom ,#7E99A3, #4C585B,black);
    transition: 0.4s all ;
}


/*======== Content 4 ==========*/

.cont4sec{
    padding: 4vw 0;
    text-align: center ;
    height: 90vh ;
    background-color:#2C3042;
    color: white;
}
.cont4sec h5{
    font-family: monospace;
    letter-spacing: 2px;
}
/* .cont4sec .cont4box{
    width: 70vh;
    height: 60vh;
    background:linear-gradient(to bottom ,white ,grey, grey, black);
    position: relative;
    transition: 0.4s all;
} */

.cont4secproduct{
    padding: 4vw 0 ;
    display: flex;
    justify-content: space-around;

}
.cont4box:hover {
    background-image: linear-gradient(to bottom ,orangered, rgb(190, 64, 18),rgb(32, 14, 7),black);
    transition: 0.4s all ;
}

/*============= Client Section ==============*/
.clientimages img{
    width: 20vh;
    height: 20vh;
    z-index: 9;
}
.section5 {
    padding: 6vw 0;
    text-align: center;
}
.section5 h5{
    border-left: #FF6620 solid ;
}
.section5 img{
    width: 50vh;
}

/*===========--- footer --============*/

footer{
    background-color: #01172F;
}
.footerupperdiv{
    display: grid;
    grid-template-columns: 25% 25% 25% 25% ;
    justify-content: space-evenly;
    color: white;
    gap: 30px;
    padding: 5vw;
    border-bottom: solid 1px white;
}
.footerupperdiv h3{
    color: white;
    font-weight: bolder;
}
.footerupperdiv p{
    color: #A5BFCC;
    font-weight: bolder;
}
.footerlastdiv{
    color: white;
    text-align: center;
    font-size: small;
    padding: 3vw 0;
}

/*======== Social Media Section ===========*/
.wts{
    position: fixed;
    bottom: 5% ;
    left: 5% ;
    border: solid white 2px ;
    border-radius: 50%;
    padding: 1vw ;
    background-color: #25D366;
    color: white;
}.wts i{
    font-size: 2.5vw;
    color: white;
    z-index: 999999999999999999;
}
.allplatform{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 45%;
    left: 97%;
}
.allplatform h2{
    background-color: #073B66;
    width: 10vh;
    padding: 1vw 0.5vw;
    color: white;
    font-size: 1.2vw;
    margin: 0vw 0;
}
.allplatform h2:hover .allplatform{
    left: 95%;
}


/*===============Inner Pages Start =================*/

/*=============== About Pages =============*/
/*===---- Inner Banners ---======*/
.banners{
    height: 50vh;
    color: white;
    background: linear-gradient(to right ,black ,#333a3b,#7E99A3,#A5BFCC );
    display: flex;
    align-items: center;
    padding: 0 4vw;
}
.banners h2{
    font-size: 2.5vw;
}
/*===---- Content 1 -----=====*/
.aboutcontent1{
    padding: 2vw 5vw ;
}
.aboutcontent1 h5{
    font-family: monospace;
    letter-spacing: 2px;
    border-left: solid #FF6620 3px ;
    margin: 3vw 0 0 0 ;
    padding: 0 0 0 1vw ;
}
.aboutcontent1 h1{ 
    color: #22273A;
    font-weight: bolder;
    padding: 0 0 2vw 0 ;
}
.aboutcontent1 p{
    color: #828282;
    font-weight: bolder;
}

/*===----- Content 2 ---=====*/
.aobutcontent2{
    padding:2vw 5vw ;
}
.aobutcontent2 h5{
    font-family: monospace;
    letter-spacing: 2px;
    border-left: solid #FF6620 3px ;
    margin: 3vw 0 0 0 ;
    padding: 0 0 2vw 0 ;
}.aobutcontent2 h1{
    color: #22273A;
    font-weight: bolder ;
    padding: 0 0 2vw 0;
}
.aboutcontent1imgsec{
    display: flex;
    justify-self: center;
}

.aboutcontent2{
    padding: 2vw 5vw ;
}
.aboutcontent2 h5{
    font-family: monospace;
    letter-spacing: 2px;
    border-left: solid #FF6620 3px ;
    margin: 3vw 0 0 0 ;
    padding: 0 0 0 1vw ;
}
.aboutcontent2 h1{ 
    color: #22273A;
    font-weight: bolder;
    padding: 0 0 2vw 0 ;
}
.aboutcontent2 p{
    color: #828282;
    font-weight: bolder;
}
.aboutcontent2 img{
    width: 100%;
    height: 100%;
}
.aboutcontent3sec{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw 6vw;
}
.aboutcontent3 tr th{
    padding: 2.5vw 9vw;
    background-color: rgb(138, 135, 131);
    color:white;
    font-size: 2.5vw;
    font-style: italic;
    font-weight: 500;
}
.aboutcontent3 tr td{
    padding: 1.5vw 1vw  ;   
    border-right: black 2px solid; 
}
.aboutcontent3 tr:nth-child(even){
    background-color:#F2F2F2;
    padding: 2vw 0;
    color:black;
}
.aboutcontent3 tr:nth-child(odd){
    background-color:rgba(173, 169, 169, 0.425);
    padding: 2vw 0;
    color: black;
}
.aboutcontent3 tr:nth-child(odd):hover{
    background-color:white;
    padding: 2vw 0;
    color: black;
}
.aboutcontent3 tr:nth-child(even):hover{
    background-color: white;
    color: black;
}

/*=========Quality Compliance Page =========*/
.qualitycompliance1{
    display: grid;
    grid-template-columns: 15% 75% ;
    align-items: center;
}

/*=============== Enquiry Pag ==============*/
.enquiry{
    padding: 3vw ;
    box-shadow: 2px 2px 2px grey;
    height: 60vh;
    background-color:whitesmoke;
}
.enquiry input{
    height: 4vw;
}

.enquiry label{
    color: #828282;
}
.submitbtn{
    padding: 1vw 2vw ;
    font-size: 1.4vw;
    background-color: #FF6620;
    color: white;
    transition: 0.2s all ;
}
.enquiry form >div{
    margin: 2vw 0 0 0 ;
} 
.submitbtn:hover{
    background-color: #01172F;
    transition: 0.2s all;
}

/*========-====== Client page =============*/
.lb-outerContainer {
    width: 50vh !important; /* Width of the lightbox box */
    height: 30vh !important; /* Height will adjust automatically */
    top: 60% !important; /* Center the box vertically */
    left: 0% !important; /* Center the box horizontally */
}
.lb-container {
    width: 100% !important;
    height: 100% !important;
}
.lb-image {
    max-width: 100% !important;
    max-height: 100% !important;
}


/*======================Video SEc ========*/
.videosec{
    padding: 2vw ;
    display: grid;
    grid-template-columns: 33% 33% 33% ;
    gap: 2vw;
}
.videosec iframe{
    width: 100%;
    height: 40vh ;
}

/*=============== Contact Page ==========*/
.contactussec h4{
    color: #FF6620;
}
.contactussec h6{
    font-size: 16px;
    color: #828282;
}

/*=============== Product Page ============*/
.productheading{
    display: flex;
    align-items: center;
    justify-content: center;
}
.productheading h2{
    width: 90% ;
    background-color: #FF6620;
    padding: 1.5vw 0 ;
    text-align: center;
    color: white;
}
.productsec{
    display: flex;
    justify-content: space-evenly;
}
.productdetail{
    width:140vh;
    display: flex;
    padding: 0 0 0 2vw;
    justify-content: center;
    flex-direction: column;
}
.productimg img{
    width: 45vh;
    height: 30vh;
}
.producttable{
    width: 120vh;
    border: solid 1px grey;
}.producttable tr td{ 
    border-bottom: solid grey 1px;
    padding: 1vw ;
    border-right: solid 1px;

}
.productdetail h3{
    border: solid grey 1px;
    padding: 1vw;

}
.productdetail p{
    padding: 2vw 0 ;
    color: #828282;
}
.productdetail button{
    width: 40vh;
    padding: 1vw 2vw ;
    background-color: #FF6620;
}
.productdetail a{
    color: white ;
    text-decoration: none;
}
.productdetail a:hover{
    color: white;
    text-decoration: none;
}