@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

span {
  color: crimson;
}


a {
  text-decoration: none;
  color: black;
}

/* Heading Start From Hare */

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
}

.nav {
  width: 100%;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  font-weight: 300;
  background-color: #fff;
  padding: 35px 150px;
  border-bottom: 1px solid black;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 1;
  transition: 500ms ease-in-out;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 500ms ease-in-out;
}

#logo {
  font-size: 24px;
}
.right a{
  padding-right: 10px;
  font-size: 14px;
  transition: 200ms ease-in-out;
}
.right a:hover{
  color: crimson;
  text-decoration: underline;
  transition: 200ms ease-in-out;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 500px;
  background-image: url(hero-bg.jpg);
  background-position: left;
  background-size: cover;
  background-clip: padding-box;
  background-repeat: no-repeat;
  position: relative;
  top: 50px;
  padding-left: 120px;
  padding-top: 180px;
  color: #fff;
}

#erp{
  background-image: url(erp1.jpg);
  background-position: top;
  background-size: cover !important;
  background-repeat: no-repeat;
}

.hero h2{
  font-size: 50px;
  padding-bottom: 15px;
}

.hero hr{
  width: 600px;
  margin-bottom: 15px;
}
.hero p{
  font-size: 25px;
}
.right{
  padding-top: 7px;
}

/* Servic3e section */

.services {
  position: relative;
  top: 100px;
  margin-bottom: 100px;
}

.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cards {
  width: 350px;
  margin: 10px 20px;
  padding: 20px 10px;
  box-shadow: 0px 0px 2px 0px gray;
  border-radius: 10px;
  transition: 500ms ease-in-out;
}

.cards:hover{
  transform: scale(1.1);
  transition: 500ms ease-in-out;
}

.cards h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: rgb(37, 37, 37);
  padding-bottom: 25px;
}

.cards .btn{
  width: 100%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: orange;
  margin-top: 15px;
}
.btn-last{
  margin-top: 55px !important;
}

.cards p {
  font-size: 16px;
  font-weight: 300;
  color: #2e2e2e;
}


/* Feature Section  */
.feature{
  text-align: center;
  position: relative;
  top: 100px;
  padding: 0 100px;
  padding-bottom: 100px;
}
.feature h4{
  font-size: 25px;
  margin-bottom: 40px;
}
.f-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.icon{
  padding: 20px;
  box-shadow: 0px 0px 3px 0px gray;
  margin: 10px 20px;
  width: 150px;
  height: 150px;
}
.icon a i{
  color: crimson;
  font-size: 25px;
  margin-bottom: 20px;
}

/* Form start from here */
form{
  position: relative;
  text-align: left;
  top: 100px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form h4{
  text-align: left;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 400px;
  color: crimson;
  border-bottom: 1px solid crimson;
}
.names{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 700px;
}

input{
  height: 40px;
  border: none;
  border-bottom: 1px solid gray;
  font-weight: 300;
  outline: none;
}

textarea{
  width: 700px;
  margin-top: 20px;
  height: 100px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid gray;
  outline: none;
  font-weight: 300;
}

button{
  margin-top: 30px;
  padding: 10px 30px;
  border-radius: 25px;
  outline: none;
  background: #fff;
  border: 1px solid crimson;
  transition: 500ms ease-in-out;
}
button:hover{
  transform: scale(1.1);
  background: crimson;
  color: white;
  transition: 500ms ease-in-out;
}

/* Footer */
 footer {
  position: relative;
  top: 100px;
  padding: 50px 150px;
  display: flex;
  justify-content: space-between;
  box-shadow: 5px black;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
 }
 .left p{
  font-size: 14px;
  color: gray;
  padding-left: 2px;
 }

 .right h1{
  font-size: 20px;
 }
 .right p{
  font-size: 14px;
  padding-left: 2px;
  color: #666;
 }

 #copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: none;
  padding: 10px;
  background-color: gray;
  color: #fff;
  font-size: 14px;
  font-weight: 200;
 }