@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
body{
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
}
*{
    padding: 0;
    margin: 0;
}

a{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
a:hover{
    text-decoration: none;
    color:var(--orange);
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 0;
}
p{
    margin-bottom: 0;
}

img{
    width: 100%;
}
.objectContain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.objectCover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul{
    margin-bottom: 0;
}
li{
    list-style: none;
}
:root{
    --para:#4c4c4b;
    --dark:#343a40;
    --shadow:0 0 8px 0 rgba(0,0,0,0.2);
    --lightblue:#f0f3fb;
    --lightgrey:#f3f3f3;
    --orange:#f58c3e;
    --darkblue:#24345d;
    --darken:#252936;
    --blue:#140c40;
}
@media screen and (min-width:1100px){
    .autocontainer{
        margin: 0 64px;
    }
}
@media screen and (max-width:1100px){
    .autocontainer{
        margin: 0 32px;
    }
}
@media screen and (max-width:992px){
    .autocontainer{
        margin: 0 24px;
    }
}
@media screen and (max-width:600px){
    .autocontainer{
        margin: 0 16px;
    }
}
.bg-orange{
    background-color: var(--orange);
}
.bg-lightblue{
    background-color: var(--lightblue);
}
.btn{
    border-radius: 32px !important;
}
.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title p {
    font-size: 18px;
    margin-bottom: 10px !important;
    color: #8c8c8c;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.title p img{
    width: 24px;
    height: 32px;
}
.title h2{
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.15em;
    color: #140c40;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 16px;
    padding-bottom: 30px;
}
.title h2:before{
    content: "...";
    font-size: 24px;
    color: var(--orange);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.fixedbtn{
    position: fixed;
    bottom: 5%;
    right: 1%;
    width: 36px;
    height: 36px;
    text-align: center;
    background:var(--success) ;
    color: white;
    z-index: 3000;
    border-radius: 50%;
    box-shadow: var(--shadow);
    animation: zoom 2s linear infinite;
}
.fixedbtn i{
    line-height: 36px;
}
.fixedbtn:hover{
    color: white;
}
@keyframes zoom{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
::-webkit-scrollbar{
    width: 4px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--orange);
}
::-webkit-scrollbar-truck{
    background-color: #f5f5f5;
}
::selection{
    background-color: var(--orange);
    color: white;
}
figure{
    margin-bottom: 0 !important;
}
.btn{
    position: relative;
    border-radius: 32px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    padding: 6px 18px;
    overflow: hidden;
}
.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: rgba(255,255,255,0.1);
    animation: flow 2s infinite linear;
    z-index: -1;
}
@keyframes flow{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}
.mydropdown{
    position: relative;
}
.dropdownMenu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background:white;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.3);
    display: none;
}
.dropdownMenu a{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px ;
}
.dropdownMenu a:hover{
    color: var(--orange);
}
.dropdownMenu a:not(:last-child){
    border-bottom: 1px solid #ccc;
}
header{
    position: relative;
    z-index: 2000;
}
.topnav{
    background-color:var(--darkblue);
    color: white;
    padding: 4px 64px ;
}
.socialmedia li a{
    width: 36px;
    height: 36px;
    text-align: center;
}
.socialmedia li a i{
    line-height: 36px;
}
.topnavright p{
    margin-right: 24px;
}
.contactList li{
    padding: 12px;
}
.middlenav{
    padding: 12px 64px 40px 64px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
}
.con_list_Left{
    width: 40px;
    height: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;
    margin-right: 12px;
}
.con_list_Left i{
    line-height: 40px;
}
.con_list_right{
    flex: 1;
}
.bottomNav{
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background-color:var(--darken);
}
.navlinks{
    padding:0 40px ;
    height: 70px;
    color: white;
    line-height: 70px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
}

#navbar .flex{
    justify-content:center;
}
.navlinks::before{
    content: "";
    width: 3px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    background: url('../images/linkdots.png');
    background-size:contain;
    background-repeat: no-repeat;
}
.stickyNavbar{
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    padding:4px 20px;
    display: none;
    box-shadow: var(--shadow);
}
.stickyNavbar .navlinks{
    padding:0 20px ;
    height: 50px;
    color: var(--dark);
    line-height: 50px;
    font-size: 14px;
}
.navlinks.active, .navlinks:hover{
    color: var(--orange);
}
/* --------------pogoslider----------- */
.pogoSlider-slide:nth-child(1){
    background: url('../images/1.jpg');
    background-position:center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.pogoSlider-slide:nth-child(2){
    background: url('../images/2.jpg');
    background-position:center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.pogoSlider-slide:nth-child(3){
    background: url('../images/3.jpg');
    background-position:center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.pogoSlider-slide:nth-child(4){
    background: url('../images/4.jpg');
    background-position:center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.pogoSlider-slide-element{
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    text-align: center;
}
.pogoSlider-slide-element h3{
    padding: 8px 32px;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    background-color:#ff771b;
    display: inline-block;
    text-transform: uppercase;
}
.pogoSlider-progressBar {
    top: auto;
    bottom: 0;
}
.pogoSlider-progressBar-duration {
    background: var(--darkblue);
}
/* ---aboutus---- */
.aboutsection{
    position: relative;
    padding: 80px 16px;
}
.aboutsection::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/light.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    z-index: -1;
}
.aboutImg{
    position: relative;
    width: 80%;
    height: 380px;
    margin: auto;
}
.aboutImg img{
    border: 16px solid #ffffff;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
}
.aboutImg::before{
    content: "";
    position: absolute;
    top: -25px;left: -25px;
    background: url('../images/dot.png') repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.title-left{
    justify-content: flex-start;
    align-items: flex-start;
}
.title-left h2::before{
    left: 0;
    transform: none;
}
.aboutIcon li{
    width: 32%;
    text-align: center;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
    padding: 12px;
    border-radius: 12px;
}
.aboutIcon li img{
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}
.font24{
    font-size: 24px;
}
.quotes{
    border: 1px solid #9e9e9e45;
    padding: 16px;
}
.consultation, .programs, .projectssection{
    padding: 60px 0;
}
/* ----services--- */
.serviceflex{
    justify-content: center;
}
.servicebox{
    width: 32%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
    margin:8px;
    background:white;
    overflow: hidden;
    position: relative;
}
.servicebox:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to top,var(--orange) 50%, #24345d 50%);
}
.serviceboxImg{
    width: 50%;
    height: 150px;
    overflow: hidden;
    position: relative;
}
.serviceboxImg img, .servicebox{
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.serviceboxRight{
    width: 50%;
    padding: 12px;
}
.serviceboxRight h3{
    font-size:20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 4px;
}
.serviceboxRight a{
    color: var(--success);
    font-weight: 600;
}
/* ---projects-- */
.programbox{
    box-shadow: var(--shadow);
}
.programImg{
    height: 270px;
    position: relative;
    overflow: hidden;
}
.programImg img, .serviceboxImg img{
    transition: 1s all ease;
}
.programImg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-45deg)  translate(-270px);
    opacity: 0;
    transition:all .5s linear;
}
.programbox:hover .programImg::after{
    opacity: 1;
    transform: skewX(-45deg) translate(450px);
}
.programbox:hover .programImg img, .servicebox:hover .serviceboxImg img{
    transform: scale(1.2);
}
.programbox p{
    display: block;
    font-size:18px;
    padding: 18px 8px;
    text-align: center;
    font-weight: 600;
    background: white;
    text-transform: capitalize;
}
.programbox:hover p{
    color: var(--orange);
}
.projectssection{
    position: relative;
}
.projectssection::before{
    content: "";
    position: absolute;
    top: -1px;right: 5%;
    background: url('../images/bulb.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 30%;
    z-index: -1;
}

.consultation{
    background:linear-gradient(to bottom, #f0f3fbd6,#f0f3fbd6), url('../images/industry.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.consultBox{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.consultBox form{
    width: 60%;
    background:var(--lightblue);
    border-radius: 32px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.consultBox form label{
    margin-bottom: 0;
}
.consultBox form label input{
    border-radius: 32px;
    padding: 2px 16px;
    height: 40px;
    line-height: 36px;
    border:1px solid #ccc;
    font-size: 14px;
}
input:focus{
    outline: none;
}
.consultBox p{
    position: relative;
    display: inline-block;
    margin: 32px 0;
}
.consultBox p:before, .consultBox p:after {
    content: "........";
    position: absolute;
    top: 6px;
    right: 105%;
    font-size: 28px;
    color: var(--para);
    letter-spacing: 6px;
    line-height: 0;
}
.consultBox p:after {
    right: auto;
    left:105%;
}
.consultBox h3 span{
    font-weight: 700;
}
.consultBox h3 a{
    font-weight: 700;
    color: var(--orange);
}
.consultBox h3 a:hover{
   text-decoration: underline;
}
.consultBox h3 i{
    color: var(--success);
}
.footerTitle{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
footer{
    color: white;
    background: var(--darkblue);
}
footer .row{
    padding: 50px 0 32px 0;
}
.copyrights{
    padding: 12px;
    text-align: center;
    border-top: 1px solid #fff;
}
.socialMedia{
    justify-content: flex-start;
}
.socialMedia li a{
    width: 36px;
    height: 36px;
    border-radius:50%;
    text-align: center;
    margin: 0 6px;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
    transition: .5s all ease;
    color: white;
}
.socialMedia li a:hover{
    transform: scale(1.2);
}
.socialMedia li a i{
    line-height: 36px;
}
.socialMedia li:nth-child(1) a{
    background: var(--primary);
}
.socialMedia li:nth-child(2) a{
    background: #2196f3 ;
}
.socialMedia li:nth-child(3) a{
    background: #25D366;
}
.contactlist2 li{
    padding-left: 40px;
    position: relative;
    margin-bottom: 12px;
}
.contactlist2 li i{
    position: absolute;
    top: 3px;
    left: 8px;
}
.mobilecontact, .mobile_nav_close, .navbar_toggler{
    display: none;
}
.mobilecontact .contactList{
    width: 100%;
}
::placeholder{
    font-size: 14px;
}
.contactform{
    padding: 20px;
    box-shadow: var(--shadow);
}
input[type=number]::-webkit-inner-spin-button{
    display: none;
}
.contactform .form-control{
    border: 0;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}
.contactform .form-control:focus{
    box-shadow: none;
}
.contactform .form-group{
    position: relative;
}
.contactbox{
    width: 100%;
    height: 200px;
    text-align: center;
    border: 1px solid #ccc;
    padding-top: 50px;
    position: relative;
}
.contact_detail {
    position: absolute;
    bottom: -50px;
    width: 90%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    background-color: #eeecec;
}
.contact_detail p:not(:last-child){
    margin-bottom: 5px;
}
.clientspage ul{
    gap:8px;
}
.clientspage ul li{
    width: 24%;
    height: 100px;
    padding: 12px;
    box-shadow: 0 0 1px 0 #233258;
}

.aboutpage p{
    text-align: justify;
    margin-bottom: 12px;
}
.nav-pills.mine .nav-link {
    padding: 0;
    margin-bottom: 12px;
    border: 1px dashed #ccc;
    position: relative;
    height: 50px;
    line-height: 50px;
}
.nav-pills.mine .nav-link i{
    border-right: 1px dashed #ccc;
    width: 42px;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 50px;
}
.nav-pills.mine .nav-link span{
    display: inline-block;
    padding-left: 56px;
}
.nav-pills.mine .nav-link.active{
    background: var(--orange);
    border: 1px solid white;
}
#OurCommitment ul li{
    list-style-type: disc;
}
.aboutpage .aboutsection {
    padding: 70px 0 50px 0;
}
.tab-pane h3{
    font-size:24px;
    margin-bottom: 12px;
}
/* -----service page-------- */
.serv_img{
    height: 400px;
}
.serv_head{
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
}
.serv_detail{
    box-shadow: var(--shadow);
    margin-top:12px;
    padding: 20px;
}
.serv_detail p{
    text-align: justify;
    margin-bottom: 8px;
}
/* -----service page-------- */
/* -----product page-------- */
.projectpage .programbox{
    width: 24%;
    margin-bottom: 24px;
}
.BigImg{
    width: 100%;
    height: 400px;
    padding: 16px;
    box-shadow: inset 0 0 8px 0 #3f51b5;
}
.BigImg img{
    box-shadow: 0 0 8px 0 rgb(36 52 93 / 44%);
}
.smallImgContainer li{
    width: 32%;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.smallImgContainer{
    gap: 8px;
    justify-content: flex-start;
}
/* -----product page-------- */
/* ------page title------------ */
.pagetitle{
    padding: 120px 64px;
    color: white;
    text-transform: capitalize;
}
.pagetitle h2{
    font-size: 60px;
    font-weight: 600;
}
.pagetitle p{
    margin-bottom: 0 !important;
}
.linkdiv.flex{
    justify-content: flex-start;
}
.aboutpage .pagetitle{
    background: linear-gradient(45deg, var(--darkblue), #0000), url('../images/bg/transformer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.servicespage .pagetitle{
    background:linear-gradient(45deg, var(--darkblue), #0000), url('../images/bg/wire.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.clientspage .pagetitle{
    background:linear-gradient(45deg, var(--darkblue), #0000), url('../images/bg/solarpanel.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.projectpage .pagetitle{
    background:linear-gradient(45deg, var(--darkblue), #0000), url('../images/bg/cctv.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contactPage .pagetitle{
    background:linear-gradient(45deg, var(--darkblue), #0000), url('../images/bg/map.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ------page title------------ */
@media screen and (max-width:1200px){
    .topnavright p{
        display: none;
    }
    .navlinks {
        padding: 0 32px;
        height: 60px;
        line-height: 60px;
    }
    .bottomNav {
        width: 90%;
        bottom: -30px;
    }
    .middlenav {
        padding: 12px 24px 40px 24px;
    }
    .topnav {
        padding: 4px 24px;
    }
    .aboutIcon li {
        padding: 8px;
    }
    .aboutsection {
        padding: 64px 24px;
    }
    .aboutsection::after {
        display: none;
    }
    .servicebox {
        width: 48%;
    }
    .programImg {
        height: 230px;
    }
    .programbox p{
        padding: 12px 8px;
    }
    .consultBox form {
        width: 74%;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
    }
    .projectpage .programbox{
        width: 32%;
    }
    .pagetitle {
        padding: 80px 64px;
    }
    .pagetitle h2 {
        font-size: 32px;
    }
    .smallImgContainer li {
        width: 31%;
    }
}
@media screen and (max-width:992px){
    .bottomNav {
        position: fixed;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        bottom: auto;
        top: 0;
        right:0;
        left: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        background-color:#f58c3e47;
        transform: translateX(100%);
        opacity: 0;
        width: 0;
        visibility: hidden;
        transition: .5s all ease;
    }
    .bottomNav.active{
        transform: translateX(0%);
        opacity: 1;
        width: 100%;
        visibility: visible;
    }
    .bottomNav .navBg{
        width: 50%;
        height: 100%;
        background-color: #222;
    }
    .bottomNav nav .flex{
        flex-direction: column;
    }
    .bottomNav .navlinks{
        width: 100%;
        display: block;
        height: 50px;
        line-height:50px;
        padding: 0 12px;
        font-size: 15px;
        border-bottom: .5px solid #ccc;
    }
    .bottomNav .flex li{
        width: 100%;
    }
    .bottomNav .navlinks::before{
        display: none;
    }
    .mobilecontact, .mobile_nav_close, .navbar_toggler{
        display: block;
    }
    .mobilecontact{
        margin-top: 12px;
        color: white;
    }
    .mobile_nav_close{
        padding: 12px;
        text-align: right;
    }
    .middlenav {
        padding:8px 16px;
    }
    .bannerContent {
        width: 80%;
        height: 80%;
    }
    .aboutImg {
        height: 300px;
        margin-top: 50px;
    }
    .servicebox {
        width: 47%;
    }
    .consultation, .programs, .projectssection {
        padding: 50px 0;
    }
    .consultBox form label {
        width: 100%;
        margin-bottom: 12px;
    }
    .consultBox form label input{
        width: 100%;
    }
    .footer_2{
        order: 3;
    }
    .footer_3{
        order: 2;
    }
    .projectpage .programbox{
        width: 48%;
    }
    .pagetitle {
        padding: 64px 32px;
    }
    .pagetitle h2 {
        font-size: 36px;
    }
    .clientspage ul li{
        width: 32%;
    }
    .contactform {
        margin-top: 80px;
    }
    .smallImgContainer {
        margin-top: 24px;
    }
    .smallImgContainer li {
        width: 32.5%;
        height: 150px;
    }
}
@media screen and (max-width:770px){
    .footer_2{
        order: 2;
        margin: 12px 0;
    }
    .footer_3{
        order: 3;
    }
    .consultBox p::before, .consultBox p::after{
        display: none;
    }
    footer .row {
        padding: 32px 0 16px 0;
    }
    .consultBox form {
        width: 100%;
    }
    .consultBox h3{
        font-size: 20px;
    }
    .title h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .servicebox {
        width: 100%;
        margin: 8px 0;
    }
    .serviceboxRight h3 {
        font-size: 18px;
    }
    .serviceboxImg {
        height: 130px;
    }
    .aboutImg {
        height: 240px;
    }
    .aboutImg img {
        border: 8px solid #ffffff;
    }
    .aboutIcon li {
        width: 45%;
       margin: 6px;
    }
    .aboutIcon{
        justify-content: center;
    }
    .logo{
        width: 260px;
    }
    .topnav p{
        display: none;
    }
    .topnavright{
        width: 100%;
    }
    .socialmedia{
        width: 100%;
    }
    .footerlinks li a{
        margin-bottom: 6px;
    }
    .bottomNav .navBg {
        width: 90%;
    }
    .bottomNav .navlinks {
        height: 40px;
        line-height: 40px;
    }
    .mobileCenter{
        text-align: center;
    }
    .pogoSlider-slide-element h3 {
        padding: 4px 8px;
        font-size: 12px;
    }
    .projectpage .programbox{
        width: 100%;
    }
    .pagetitle {
        padding: 32px 16px;
    }
    .clientspage ul li{
        width: 48%;
    }
    .contactform {
        margin-top: 16px;
        padding: 8px;
    }
    .serv_img {
        height: 190px;
    }
    .serv_head {
        font-size: 24px;
    }
    .contact_detail {
        bottom: 0px;
    }
    .contactbox {
        padding-top: 28px;
        margin-bottom: 16px;
    }
    .smallImgContainer li {
        width: 48.5%;
        height: 120px;
    }
    .BigImg {
        height: 220px;
        padding: 8px;
    }
    .serv_detail {
        padding: 8px;
    }
}


.field-error::placeholder{
    color:red !important;
}