@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/js/fontawesome.min.js');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100%;
}

.banner{
    width: 100%;
    /* height: 100vh; */
}

.banner nav{
    position:fixed;
    top: 0;
    left: 0px;
    width: 100%;
    display:flex;
    
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    padding: 70px 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    z-index: 100;
}

.banner nav>div{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.banner nav>div #logohead{
    color:rgb(37, 104, 167);
    font-weight: 600;
    margin-top: 5px;
}

.logo img{
    height: 70px;
    width: 70px;
}


.carousel{
    z-index: -10;
    
}


.banner nav .logo{
 
    opacity: 1;
}
.banner nav .toggle{
    position: relative;
    background: url(assets/images/toggle.png);
    /* width: px; */
    /* height: 28px; */
    background-size: cover;
    cursor: pointer;
}

/* toggle */
.menu-wrap img{
    display: none;
}
.menu-wrap{
    width: 50%;
    top:-20px;
    left: 20px;
    height: 30px;
}
.menu-wrap .menu ul{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-evenly;
   padding: 10px 0;
   
}
.menu-wrap .menu ul li{
    list-style: none;
}
.menu-wrap .menu ul li a{
    text-decoration: none;
    color: rgb(37, 104, 167);
    font-weight: bolder;
    font-size: 1.1em;
}
.menu-wrap .menu ul :hover{
    transform: translateY(-4px);
    color: rgb(103, 139, 170);
    transition: 0.5s ease-in-out;
    
}
#hide{
    display: none;
    z-index: 1000;
   
}
#hamburger{
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: rgb(201, 202, 202);
    opacity: 0.8;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    display: none;
    animation-name: animateright;
    animation-duration: 0.4s;
}

@keyframes animateright {
    from {right:-300px; opacity:0}
    to {right:0; opacity:1}
  }
  
#hamburger ul{
    list-style: none;
    margin-top: 200px;
}

#hamburger ul li{
    margin: 50px 20px;
}
 
#hamburger ul li a{
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
}

            /* About */
.about{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    background: #162c3b;
}
.about .contentbox{
    background: #162c3b;
    padding:50px 30px;
    width: 60%;
}
.heading{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}
.about .contentbox h3{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 30px 0 10px 0;
    text-align: center;

}
.text{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}
.about .imgbox1 {
    width: 100%;
    height: 100vh;
    overflow:hidden;
    background-size: cover;
    background-position: center;
}
.about .imgbox1 img{
    object-fit: fill;
    width: 100%;
    height: 100vh;
}

/* Vision*/
.vision{
    background: #3f8ffc;
    width: 100%;
    padding: 100px 50px;
    padding-top:50px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vision.contentbox{
    max-width: 800px;
}
.vision .imgbox{
    max-width: 250px;
}
.vision .imgbox img{
    max-width: 100%;
}

/* Products */
 .product{
    background: #162c3b;
    padding: 100px;
    text-align: center;
}
.product .imgbox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.product .imgbox img{
    max-width: 200px;
    margin: 20px;
    opacity: 0.25;
    cursor: pointer;
}
.product .imgbox img:hover{
    opacity: 1;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
 
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
     width: 25px;
    color: brown;
    margin-left: 93%;
    margin-top: 5px;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    background-color: white;
  }

  .modal-header #arno{
      opacity: 1;
      width: auto;
      margin: 10px auto;
  }
  
  .modal-body {padding: 2px 16px;}
  
  .modal-footer {
    padding: 2px 16px;
    /* background-color: #5cb85c; */
    color: white;
  }
 
  .know_more{
    letter-spacing: 1px;
    transition: all 0.2s linear 0s;
    color: white;
    background-color: dodgerblue;
    border-radius: 5px;
    padding:5px 10px;
    text-decoration: none;
  }    
     .know_more:hover {
      text-decoration: none;
     
     }
     
     #dark{
         filter: invert(70%);
     }




/* contact */

.contact{
    height: auto;
    padding: 60px 60px 40px 60px;
    background: #3f8ffc;
    text-align: center;
    border-top: .5px solid grey;
}

.contact h2{
    margin-bottom: 50px;
}


#form .inputbox{
    margin-bottom: 40px;
}
#form .inputbox input{
    width: 70%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    border-bottom: 2px solid #fff;
}
#form .inputbox input::placeholder{
    color: #fff;
}
#form .inputbox textarea{
    width: 70%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    height: 150px;
    border-bottom: 2px solid #fff;
}
#form .inputbox textarea::placeholder{
    color: #fff;
}
#form .inputbox input[type="submit"]{
    width: 150px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-weight: 400;
}

/* footer */
footer{
    background: #162c3b;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer div{
    display: flex;
    align-items: center;
} 
footer div p{
    padding: 20px 0 0 10px ;
}

footer span a{
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    color: white;
}

footer a i{
    padding: 0 5px;
    transform: rotate(90deg);
}

footer  span a:hover{
    transform: translateY(-3px);
    transition: .3s ease;
    
}

/* Responsive */
@media (max-width:1000px){
    body{
        scroll-behavior: smooth;
    }
    .banner .navbar{
        height: 10vh;
    }
    .banner .navbar #brand{
        width: 30%;
    }
    .banner  .menu-wrap img{
        display: inline-block;
    width: 50px;
    position: absolute;
    right: 5%;
    filter: invert(0.7);
    cursor: pointer;
    }
    .banner  .menu-wrap img:hover{
        transform: rotate(180deg);
        transition: 0.3s ease; 
    }
    .banner .menu-wrap .menu {
        display: none;
    }   

    .about{
        height: auto;
    }
    .about .contentbox{
        padding: 50px;
        height: auto;
        text-align: center;
    }

     .about .imgbox1{
       margin: auto 0;
    } 
    .heading{
        text-align: center;
    }
    .text{
        text-align: center;
    }
    .product{
        padding: 50px;
    }
    .product .imgbox{
        justify-content: center;
    }
    .contact{
        height: auto;
    }
    footer{
        padding: 20px 50px;
        flex-direction: column;
        text-align: center;
    }
    footer div{
        margin-bottom: 20px;
    }
}

@media (max-width:870px) {
    
    .banner .nav{
        padding: 70px 10px;
    }
    .banner .slide{
        top:24vh;
    }
    .product{
        padding:50px;
    }


@media (max-width:850px){
    .about{
        flex-direction: column;
    }
    .about .contentbox{
        width: 100%;
    }
    .about .imgbox1{
        width: auto;
    }
    @media(max-width:660px){
        .vision{
            flex-direction: column;
        }
        .vision .tags{
            display: flex;
        }
        .imgbox1{
            height: auto;
        }
    }
}

}