* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(#F4F5F7, rgb(241, 241, 241));
  overflow-x: hidden;
}

nav {
  background-color: #F4F5F7;
  padding: 10px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.left-side a {
  color: #172B4D;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s ease, background-color 0.3s ease-in-out;
}

a:hover {
  color: #0052CC;
  font-weight: 600;
}

.right-side {
  display: flex;
}

.button {
  background-color: #0052CC;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: 10px;
}

.button:hover {
  background-color: #4C9AFF;
  color: #cdcdcd;
}

.contact-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title h2 {
  font-weight: 600;
  color: #000;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: #0052CC;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:hover {
  border: 3px solid #0052CC;
  transition-duration: 0.2s;
}

.contact-inputs:focus {
  border: 3px solid #0052CC;
}

.contact-inputs::placeholder {
  color: #3f3b3c;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #0052CC, #0052CC);
  cursor: pointer;
}

.contact-left button img {
  height: 15px;
}

.contact-right img {
  width: 650px;
}

.bottom-bar {
  background-color: #0052CC;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
  width: 100vw;
}
.bottom-bar p {
  color: white;
  margin: 0;
  font-size: 16px;
  padding: 7px;
}
