@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: rgb(160, 255, 150);
}
/* NAVBAR BAR CSS STARTS HERE*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e7202;
    transition: all 0.5s ease;
  }
  .nav_logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    color: white;
  }
  .nav_logo img {
    height: 60px;
    width: 60px;
    padding: 5px;
  }
  .navbar {
    display: flex;
    list-style-type: none;
    list-style: none;
    padding-top: 20px;
    margin-top: 0px;
  }
  .navbar a {
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 5px 0;
    margin: 0px 30px;
    text-decoration: none;
    transition: all 0.5s ease;
    margin-top: 0px;
  }
  .navbar a:hover {
    color: rgb(129, 255, 125);
  }
  .navbar a.active {
    color: rgb(129, 255, 125);
  }
  .main {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
  }
  .main a {
    margin-right: 15px;
    margin-left: 5px;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.5s ease;
  }
  .user {
    display: flex;
    align-items: center;
  }
  .user i {
    margin-right: 7px;
  }
  .main a:hover {
    color: rgb(129, 255, 125);
  }
  #menu-icon {
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    display: none;
  }
  @media (max-width: 1280px) {
    .navbar a {
      padding: 5px 0px;
      margin: 0px 20px;
    }
  }
  @media (max-width: 1090px) {
    #menu-icon {
      display: block;
      padding-right: 6px;
    }
    .navbar {
      position: absolute;
      margin-top: 5px;
      top: 100%;
      right: -100%;
      width: 270px;
      height: auto;
      background-color: #0e7202;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      border-radius: 10px;
      transition: all 0.5s ease;
    }
    .navbar a {
      display: block;
      margin: 12px 0;
      padding: 0px 25px;
      transition: all 0.5s ease;
    }
    .navbar a:hover {
      color: rgb(129, 255, 125);
    }
    .navbar.open {
      right: 2%;
    }
  }
  /*NAVBAR CSS ENDS HERE*/
.contact-us-container{
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 80px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 10px;
    
}

.contact_heading h1{
    padding-top: 10px;
    text-align: center;
    color: #0e7202;
    font-size: 48px;
    font-weight: 1000;
    letter-spacing: 5px;
    margin-top:90px ;
}


.logo-image{
    height: 500px;
    width: 80%;
    display: grid;
    justify-items: center;
    align-items: center;
    margin-left: 20%;
}

.form_conatct_us{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 600px;

}

.contact_main_form{
    display: grid;
    width: 400px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 2px 2px 2px #0e7202;
    height: 550px;
}


label{
    position: absolute;
    font-weight: 600;
    font-size:24px;
    color: #0e7202;
 
}

input{
    width: 80%;
    height: 40px;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0 15px;
    border: 1px solid #0e7202;
    border-radius: 10px;
    font-size: 22px;
    color: black;
    
  
}

input::placeholder{
    text-align: left;
    font-size: 22px;
}

input:focus{
    border: none;
}

.contact_main_form textarea{
    width: 80%;
    height: 150px;
    margin: 20px 0;
    padding: 0 20px; 
    background: #c8cacaa8;
    border-radius: 5px;
    font-size: 22px;
}


.contact_main_form textarea:focus-visible{
    box-shadow: inset 0 0 0 1px #464646;
    outline: none;
  }

.contact_main_form textarea::placeholder{
    color: #868786;
    font-size: 25px;
    margin-top: 10px;

}
.label{
    font-size: 30px
}
.msg_btn
{
    display: grid;
    align-items: center;
    justify-items: center;
    justify-content: center;
}
.submit-msg{

    padding: 6px 10px;
    border: none;
    background: #0e7202;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    width: 150px;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 990px) {

    .contact_heading h1{
        justify-content: center;
        text-align: center;
    }

    .contact-us-container{
        grid-template-columns: 100%;
        margin: 0;
        row-gap: 0px;
        margin-top: 10px;
    }

    .logo-image{
        justify-content: center;
        align-items: center;
        margin: 10%;
    }

    .form_conatct_us{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

