* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}
.logo {
  height: 100px;
  width: 180px;
  margin-right: 250px;
}
header {
  height: 100px;
  width: 100%;
  background-color: aquamarine;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

ul {
  display: flex;
  gap: 15px;
}
.car {
  height: 300px;
  width: 300px;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
}
.hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 500px;
  /* gap: 80px; */
}
.hero-content {
  width: 40%;
}
.hero-image {
  height: 300px;
  width: 350px;
  object-fit: cover;
  margin-left: 100px;

}

button {
  padding: 15px;
  border-radius: 10%;
  background-color: red;
  color: white;
  border: solid 2px #fff;
}

.one {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.jam {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two {
  height: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.img {
}
.box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.box1 {
  border-radius: 5px;
  box-shadow: 2px;
  margin: 50px;
  padding: 50px;
  height: 150px;
  width: 150px;
  border: 2px;
  background-color: blanchedalmond;
 display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s, box-shadow 0.3s, background-color 0.3s, color 0.3s, text-shadow 0.3s;}
.box1:hover {
  box-shadow: bisque;
  transform: translate(-0.3rem);
  background-color: aquamarine;
  color: darkblue;
  text-shadow: darkblue;
  transform: scale(1.1);
}
.our {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: green;
}
.ptag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: large;
}


/* custom form */

form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
      width: 24%;
    margin: 0 auto;
}

label {display: block;}

input[type=text], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}
/* custom form end */
.footer {
  height: 200px;
  width: 100%;
  background-color: bisque;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-icon {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.customtwo-icon {
  color: midnightblue;
  font-size: 20px;
  gap: 10px;
}
