@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;

}
::selection{
    color: #000000;
    background: #f37930;
  }

/* .......Navbar messege........ */
.nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
    color: #fff;
}

.line{
    height: 25px;
    width: 1px;
    background-color: #fff;
    margin-right: 15px;
}

#location{
    color: #fff;
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn .fa-brands{
    color: #fff;
    margin-right: 20px;
    font-size: 22px;
   
    &:hover{
      color: #f37930;
    }
}

.iso{
    height: 100%;
}

.iso img{
    height: 55px;
}



/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 100px;
    padding: 0 50px;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000; 
    
    box-shadow: rgba(0, 0, 0, 0.139) 0px 10px 36px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 1px;

}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 90px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.menu ul li a {
  color: #303433;
  text-decoration: none;
  padding: 20px 10px;
  transition: all .2s ease-in;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin-left: 8px;

  &:hover{
      color: #f37930;
  }
}











.fa{
    transition: all .5s ease;
}

.menu .drop:hover .fa{
    transform: rotate(180deg);
}


.dropdown-menu{
    display: none;
    border-radius: 5px;
    background-color: #fff;
}

.drop:hover .dropdown-menu{
    display: block;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-decoration: none;
    margin-left: -15px;
}












/* phone view menu//////// */


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #f37930;
    color: white;
    z-index: 100000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    padding: 20px 20px 50px 20px;
}

.sidebar-content {
    padding: 20px;
    font-size: 30px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 1090px) {
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        font-size: 70px;
        background-color: #f37930;
        color: #ffffff;
        text-align: end;
        padding: 8px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

   
    .sidebar-content {
        font-size: 40px;
    }
    .sidebar-content ul li a {
        font-size: 40px;
    }
    .drop .dropdown-menu ul li a{
        font-size: 35px;
        
    }



}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    width: auto;
    padding: 25px 0;
    border-radius: 2px;
    border-bottom: 4px solid #f37930;

}

.dropdown-menu ul li a{
    font-size: 15px;
    padding: 10px 40px 10px 20px;
    width: auto;
    color: #000000;
}






.sub-drop .sub-menu{
  display: none;
  top: 0%;
  left: 80%;
  width: 300px;
  margin-top: 30px;
}

.dropdown-menu .sub-drop:hover .sub-menu{
  display: block;
}

.sub-drop:hover .fa-solid{
  transform: rotate(90deg);
  transition: all .3s ease;
}

@media (max-width: 730px){
  .sub-drop .sub-menu{
      width: 550px;
      margin-left: 50px;
      background-color: #f5f5f5;
  }
}








/* ////////// hero banner ///////////// */


.hero-banner{
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-image: url(/images/epc_banner.jpg);
    background-size: cover;
    background-position:center;

}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(243,121,48);
    background: linear-gradient(1deg, rgba(255, 118, 39, 0.262) 0%, rgba(0, 0, 0, 0.297) 31%, rgba(0, 0, 0, 0.234) 54%, rgba(255, 255, 255, 0.181) 85%);
}
.hero-heading{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.hero-content .hero-heading h1{
    color: #fff;
    font-size: 60px;
    text-align: center;
}













/* ///////// Services Container //////////// */


.service-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
    margin-top: 50px;
    padding: 50px 40px;

    position: relative;
}

.categories-container{
    width: 28%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    position: sticky;
    top: 40px;
    align-self: flex-start;
}

.service-categories{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border: 1px solid rgb(193, 193, 193);
    border-radius: 20px;
    padding: 30px;
}

.location-box{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: auto;
}

.location-box img{
    width: 45px;
    margin-right: 15px;
}

.location-box .location-info h2{
    font-size: 18px;
    color: #585f5d;
    font-weight: 400;
}

.location-box .location-info h1{
    font-size: 18px;
    color: #303433;
    font-weight: 500;
}

.service-line{
    width: 90%;
    height: 1px;
    background-color: #bcbcbc;
    margin: 25px 0;
}




.call-information-box{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #212d45;
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 30px;
}

.call-information-box h1{
    font-size: 24px;
    color: #f37930;
}

.call-information-box p{
    font-size: 16px;
    color: #fff;
    padding: 15px 0;
}

.call-details{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.call-information-box a{
    font-size: 17px;
    color: #000;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover{
        color: #fff;
        background-color: #f37930;
    }
}

.call-information-box .fa-solid{
    font-size: 20px;
    margin-right: 10px;
}







.service-details-container{
    width: 65%;
    height: auto;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


/* Slider Container */


.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 20px;

}

/* Slider Wrapper */
.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 80vh;
    position: relative;
    border-radius: 20px;

}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.nav-button img{
    width: 35px;
}







.service-paragraph{
    width: 100%;
    height: auto;
    padding: 40px 0px;
}

.service-paragraph p{
    color: #5e5e5e;
    line-height: 1.6;
    text-align: justify;
    font-size: 17px;
}




.service-points{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
}

.service-points p{
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 15px;
    margin-left: 20px;
    font-size: 18px;
    color: #303433;
}

.service-points img{
    width: 22px;
    height: 22px;
    margin-right: 10px;
}






.service-show-img-container{
    padding: 50px 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-img{
    width: 47%;
    height: 330px;
    overflow: hidden;
    border-radius: 10px;
    object-fit: cover;

}

.service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;

    &:hover{
        filter: grayscale(100%);
    }
}






.service-basic-info{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 30px 0;
}

.service-basic-info h1{
    font-size: 30px;
    color: #303433;
    margin-bottom: 20px;
}

.service-basic-info p{
    font-size: 18px;
    line-height: 1.6;
    color: #585f5d;
}







/* //// Gallery //// */






.glry-heading{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.glry-heading h1{
    font-size: 34px;
    color: #303433;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.gallery img {
    width: 195px;
    border-radius: 10px;
    height: auto;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    width: auto;
    height: 80%;
    transition: transform 0.3s ease;
    cursor: grab;
}

.buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.icons {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
}

.icons i {
    font-size: 24px;
    margin-left: 15px;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 10px;
    right: 16px;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

.fullscreen {
    position: absolute;
    top: 13px;
    right: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.full-img {
    width: 100vw;
    height: 100vh;
}


/* Fullscreen close button */
.fullscreen-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

/* Image count style */
.image-count {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.296);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1002;
}









/* ////////// Our mission and vision //////////// */





.mission-container-backImg{
    width: 100%;
    height: auto;
    background-image: url(images/GM-banner.png);
    background-position: center;
    background-size: cover;
}
.mission-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 70px 40px;
    background-color: #0403038f;
}

.mission-box{
    width: 31%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border: 1px solid rgb(181, 181, 181);
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
}

.mission-box img{
    width: 70px;
}

.mission-box h1{
    font-size: 26px;
    color: #303433;
    padding: 15px 0;
}

.mission-box p{
    font-size: 16px;
    color: #303433;
    text-align: start;
}















/* ////// Contact us form/////// */






.contact-info{
    width: 27%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #192946;
    border-radius: 10px;
}

.contact-call{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.contact-call img{
    width: 50px;
}

.contact-call p{
    font-size: 16px;
    color: #ffffff;
    padding: 10px 0;
}

.contact-call a{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.contact-img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-img img{
    height: 280px;
}











/* ////// form /////////// */

.form-container{
    display: flex;
    padding: 50px 10px;
    height: auto;
    background: #def1fb98;
    align-items: center;
    justify-content: space-between;
  }
  
  .wrapper{
    width: 70%;
    height: 600px;
    background: #192946;
    color: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
  }
  .wrapper header{
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #f37930;
  }
  .wrapper form{
    margin: 35px 30px;
  }
  .wrapper form.disabled{
    pointer-events: none;
    opacity: 0.7;
  }
  form .dbl-field{
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
  }
  .dbl-field .field{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
  }
  .wrapper form i{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #212d45;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
  }
  form .field input,
  form .message textarea{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .field input::placeholder,
  .message textarea::placeholder{
    color: #212d45;
    
  }
  .field input:focus,
  .message textarea:focus{
    padding-left: 47px;
    border: 2px solid #f37930;
  }
  .field input:focus ~ i,
  .message textarea:focus ~ i{
    color: #f37930;
  }
  form .message{
    position: relative;
  }
  form .message i{
    top: 30px;
    font-size: 20px;
  }
  form .message textarea{
    min-height: 220px;
    max-height: 230px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
  }
  form .message textarea::-webkit-scrollbar{
    width: 0px;
  }
  .message textarea:focus{
    padding-top: 14px;
  }
  form .button-area{
    margin: 25px 0;
    display: flex;
    align-items: center;
  }
  .button-area button{
    color: #212d45;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #f37930;
    transition: background 0.3s ease;
  }
  .button-area button:hover{
    background: #ffae00;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }
  
  
  
  
  @media (max-width: 600px){
    .form-container{
        height: 1300px;
    }
    .wrapper{
        height: 1200px;
    }
    .wrapper header{
      text-align: center;
      font-size: 50px;
    }
    .wrapper form{
      margin: 45px 20px;
      
    }
    form .dbl-field{
      flex-direction: column;
      margin-bottom: 0px;
    }
    .field .fas{
        font-size: 40px;
    }
    .message .material-icons{
        font-size: 50px;
    }
    form .dbl-field .field{
      width: 100%;
      height: 115px;
      margin-bottom: 30px;
    }
    form .field input{
        font-size: 40px;
       padding-left: 80px;
      }
    form .message textarea{
      resize: none;
      font-size: 40px;
      height: 600px;
      padding-left: 80px;
    }
    form .button-area{
      margin-top: 20px;
      flex-direction: column;
    }
    .button-area button{
      width: 100%;
      height: 85px;
      padding: 11px 0;
      font-size: 40px;
    }
    .button-area span{
      margin: 20px 0 0;
      text-align: center;
      font-size: 40px;
    }
  }
  
  





  









/* ////////// Footer ///////// */





.footer-container{
    background-color: #e1f0ff;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
  }
  
  .footer-box{
    width: 95%;
    height: auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
  }
  .fsize{
    width: 30%;
  }
  
  .footer-logo img{
    height: 90px;
  }
  
  .fsize p{
    color: #f37930;
    font-size: 26px;
    font-weight: 600;
    padding: 30px 0;
  }
  
  /* .fsize hr{
    margin: 20px 0 20px 0;
    width: 240px;
    border: 1px solid #f37930;
  
  } */
  
  .fsize ul li{
    list-style: none;
    line-height: 1.5;
    margin-bottom: 10px;
    width: 260px;
    font-size: 16px;
    color: #303030;
    transition: all .3s ease;
  }
  
  .fsize ul li a{
    color: #303030;
    transition: all .3s ease;
    font-size: 16px;
  }
  
  .fsize ul li a:hover{
    cursor: pointer;
    padding-left: 7px;
    color: #f37930;
  }
  .fbox3 .cont-name{
    font-size: 16px;
    color: #303030;
  }
  .fbox3 .fAddre{
    font-size: 15px;
    color: #303030;
  }
  .fbox3 .fphone{
    font-size: 15px;
    color: #303030;
  }
  
  
  
  
  .footer1{
    height: 80px;
    width: 100%;
    background-color: #252f3a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  
  .footer1 a{
    color: #fff;
    text-decoration: none;
  
    &:hover{
        color: #eecd01;
    }
  }
  
  
  
  
  
  
  
  
  
















/* /////////// Responcive view ////////// */






@media(max-width: 1064px){
    .nav-msg{
        width: 1064px;
    }
    .nav-container{
        width: 1064px;
    }
    .hero-banner{
        width: 1064px;
    }
    .service-container{
        width: 1064px;
    }
    .mission-container-backImg{
        width: 1064px;
    }
    .form-container{
        width: 1064px;
    }
    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }

}
















/* //////// Phone view ////////// */








@media(max-width: 600px){


    .nav-msg{
        height: 75px;
    }

  .nav-msg p{
    font-size: 30px;
  }
  #location{
    margin-left: 25px;
  }
  #phone-hide{
    display: none;
  }
  .iso img{
    height: 75px;
  }



    .nav-container{
        height: 250px;
      }
      .nav-container .logo img{
        height: 200px;
      }



      .hero-banner{
        height: 1300px;
      }
      .hero-content .hero-heading h1{
        font-size: 80px;
      }




      .service-container{
        flex-direction: column;
        position: relative;
      }
      .categories-container{
        position: relative;
        margin-bottom: 100px;
        width: 100%;
      }
      .service-categories h1{
        font-size: 60px;
      }
      .service-categories a{
        font-size: 40px;
      }
      .service-categories img{
        width: 50px;
        margin-right: 20px;
    }
    .service-categories .service-line{
        margin: 30px 0;
        height: 2px;

    }

    .location-box img{
        width: 85px;
        margin-right: 25px;
    }

    .location-box .location-info h1,
    .location-box .location-info h2{
        font-size: 48px;
    }


    .service-details-container{
        width: 100%;
    }
    .service-paragraph p{
        font-size: 40px;
    }
    .service-points p{
        width: 100%;
        font-size: 40px;
    }
    .service-points img{
        width: 45px;
        height: 45px;
        margin-right: 30px;
    }
    .service-basic-info h1{
        font-size: 55px;
        margin-top: 40px;
    }
    .service-basic-info p{
        font-size: 40px;
    }


    
    .glry-heading{
        margin-top: 50px;
    }
    .gallery img {
        width: 395px;
    }
    .glry-heading h1{
        font-size: 54px;
    }
    .close{
        font-size: 60px;
    }
    .fullscreen{
        font-size: 50px;
        right: 80px;
    }
    .image-count{
        font-size: 30px;
    }





      
.footer-box{
    flex-direction: column;
    height: auto;
    padding-bottom: 30px;
  }
  .fsize .footer-logo img{
    width: 300px;
    height: auto;
    margin: 50px 10px;
  }
  .fsize{
    width: 100%;
  }
  .fsize p{
    font-size: 50px;
    margin-top: 90px
  }
  .fsize hr{
    width: 95%;
  }
  .fsize ul li{
    font-size: 40px;
    width: 100%;
  }
  .fsize ul li a{
    font-size: 40px;
    width: 100%;
  }
  .fsize .cont-name{
    font-size: 40px;
  }
  
  
  
  .footer1{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  .footer1 p{
    font-size: 40px;
    text-align: center;
  }
  
  .footer1 a{
    font-size: 40px;
    text-align: center;
  }
  
}