*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
h6{
    font-style: italic;
    color: white;
    font-size: 10px;
    padding-top: 10px;
}
.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #2832C2;
  color: white;
}
.menu a{
    color: white;
}
.logo{
    font-size: 20px;
}
.navbar .icon .logo{
    display: flex;
}

.navbar .logo h1{
    font-size: 50px;
    padding-top: 20px;
    display: none;
}
.navbar .logo h1 br{
    font-size: 14px;
}
.navbar .logo h1 span{
    font-size: 50px;
    color: orange;
}
.navbar .logo img{
    max-width: 130px;
    width: 100%;
    height: auto;
    padding-top: 2px;
    padding-left: 5px;
    display:;
}
.menu{
    display: flex;
    gap: 1em;
    font-size: 18px;
}
.menu li:hover {
  background-color: orange;
  border-radius: 5px;
  transition: 0.3s ease;
}
.menu li {
  padding: 5px 14px;
}
.services{
  position: relative; 
}
.dropdown {
  background-color: #2832C2;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}
.dropdown li + li {
  margin-top: 10px;
}
.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}
.dropdown li:hover {
  background-color: orange;
}
.services:hover .dropdown {
  display: block;
}
input[type=checkbox] {
  display: none;
}
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}
.contact{
    position: inherit;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: black;
}
.contact .content p{
    font-weight: 300;
    color: black;
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: static;
    padding: 20px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 22px;
}
.container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: black;
    flex-direction: column;
    font-weight: 300;
}
.container .contactInfo .box .text h3{
    font-weight: 500;
    color: #00bcd4;
}
.contactform{
    width: 50%;
    padding: 10px;
}
.contactform h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactform .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contactform .inputBox input, 
.contactform .inputBox textarea {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contactform .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px;
    font-size: 16px;
    margin: 10px 0;
    transition: 0.5s;
    color: #666,
}
.contactform .inputBox input:focus ~ span,
.contactform .inputBox input:valid ~ span,
.contactform .inputBox textarea:focus ~ span,
.contactform .inputBox textarea:valid ~ span
{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactform .inputBox input[type="submit"]{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    
}

footer{
    width: 100%;
    bottom: 0;
    margin-top: auto;
    background-color: #2832C2;
    color: #fff;
    padding: 100px 0 30px;
    font-size: 13px;
    line-height: 20px;
    background-size: cover;
}
.row{
    max-width: 85%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}
footer p{
    padding-top: 10px;
}
.col h2{
    color: orange;
    padding-bottom: 20px;
}
.col h3{
    color: black;
    width: fit-content;
    margin-bottom: 20px;
    position: relative;
}
.email-id{
    font-size: 15px;
    color: black;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
ul li{
    list-style: none;
    margin-bottom: 12px;
}
ul li a{
        text-decoration: none;
        color: white;
    }
.barua{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
.barua .fa{
    font-size: 18px;
    margin-right: 10px;
}
.barua input{
    width: 100%;
    background-color: transparent;
    color: #ccc;
    border: 0;
    outline: 0;
}
.barua button{
    background-color: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.call-fixed{
    display: flex;
    position: fixed;
    background-color: blue;
    bottom: 0px;
    width: 100%;
    justify-content: center;
}
.call-fixed .texts h2{
    padding-top: 25px;
    padding-right: 20px;
    color: white;
}
.call-fixed .texts h2 a{
    color: white;
}
.call-icon img{
    display: block;
    margin: auto;
    width: 70px;
    height: 70px;
    bottom: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.call-icon{
    text-align: centre;
    display: flex;
    justify-content: centre;
    display: ;
}
.copyrightss h3{
    padding-top: 10px;
    color: white;
}

@media (max-width: 768px){
    .menu {
    display:none;
    position: absolute;
    background-color: #2832C2;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }
    .menu li:hover {
    display: inline-block;
    background-color: orange;
    transition: 0.3s ease;
  }
    .menu li + li {
    margin-top: 12px;
  }
    input[type=checkbox]:checked ~ .menu{
        display: block;
    }
    .hamburger {
    display: block;
  }
    .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }
    .dropdown li:hover {
    background-color: orange;
  }
    .kazi{
        flex-direction: column-reverse;
    }
    .text{
        text-align:;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
    }
    .picture{
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }
    .row{
        flex-direction: column;
    }
    .contact{
        padding: 20px;
    }
    .container{
        flex-direction: column; 
    }
    .container .contactInfo{
        margin-bottom: 40px;
    }
    .container .contactInfo .box{
        padding-left: 0px;
    }
    .container .contactInfo, .contactform{
        width: 100%;
    }
}
    

























