*{
    margin: 0;
    padding: 0;
    font-family: 'poppins' sans-serif;
    box-sizing: border-box;
}
body{
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(s-i-ind-services-chennai-oncksuleqr.jpg);
  background-size: 140%;
  background-position: right;
  background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container1{
    background: rgba(245, 242, 242, 0.8);
    height: 86vh;
    width: 100%;
    margin-left: 200px;
    box-shadow: 2px 2px 10px -1px rgb(122, 122, 30);
    overflow-x: hidden;
  }
.navbar{
    width: 100vw;
    background: linear-gradient(360deg, rgb(1, 10, 14), rgb(19, 78, 104) );
    position: absolute;
    top: 0;
    left: 0;
    /*display: ;*/
    height: 100px;
    position: fixed;
    z-index: 999;
}
.logo img{
    margin-top: 0;
    left: 50px !important;
    /*border-radius: ;*/
    width: 100px;
    position: relative;
    height: 100%;
}
.heading h3 span{
   
    font-size: 30px;
    background: linear-gradient(rgb(230, 219, 219), rgb(189, 209, 102));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.heading h3 img{
    width: 50px;
    animation: mov 2s linear reverse;
    transition: 2s;
    
}
@keyframes mov {
    0%{
        transform: scaleX(1.5);
    }

}
.user img{
  width: 50px;
}

.sidebar{
    width: 300px;
    height: calc(100vh - 100px);
    background: linear-gradient(360deg, rgb(1, 10, 14 ), rgb(19, 78, 104) );
    position: fixed;
    margin-left: -95%;
    z-index: 1;
    margin-top: 100px;
    
}
.sidenav {
    margin-top: 100px;
    height: calc(100% - 100px);
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, rgb(1, 10, 14 ), rgb(19, 78, 104) );
    overflow-x: hidden;
    padding-top: 20px;
  }
  
  /* Style the sidenav links and the dropdown button */
  .sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    margin-bottom: 20px;

  }
  
  .dropdown{
    margin-left: 15px;
  }
  #drop{
    z-index: 9999;
    width: 200px;
    height: 150px;
    margin-top: -1px;
    background: linear-gradient(360deg, rgb(1, 10, 14), rgb(19, 78, 104) );
    color: white;
    margin-right: 10px;
  }
  
  /* On mouse-over */
  .sidenav a:hover, .dropdown-btn:hover {
    color: grey;
  }
  
  /* Main content */
  .main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
  }
  
  /* Add an active class to the active dropdown button */
  .active {
    /*background-color:;*/
    color: grey;
  }
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
    border: 1px solid grey;
  }
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }
  
  /* Some media queries for responsiveness */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
    .container1{ max-width: 100%; }
  }
  .card{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    width: 90%;
    border-radius: 5px;
    height: 100px;
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 0px;
    
  }
  
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  img {
    border-radius: 5px 5px 0 0;
  }
  
  .container {
    padding: 2px 16px;
  }
  .formhead{
    width: 98%;
    height: 70%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -40px;
  }
  form{
    margin: 10px;
    padding: 30px;
    
  }
  label, input, select{
    margin-bottom: 10px;
  }
  input, select{
    border: 1px solid blue;
    outline: none;
    width: 60%;
    border-bottom: 1px solid ;
  }
  @media screen and (max-width: 800px) {
    .navbar {
      width: 40%; 
    }
    
  }