* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;

  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
/* Contact container */
.body {
  max-width: 100%;
  background-color: #121212;
  display: flex;
}
.contact-container {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  width: 400px;
  max-width: 200%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #000;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  text-align: left;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #000;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #b1aeae;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #808080;
}

/* Submit button */
.submit-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #121212;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #fff;
  color: #121212;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 200px;
  margin-top: 0%;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav img {
    width: 125px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .row {
    flex-direction: column;
  }
}
.connect {
  color: #121212;
  text-decoration: none;
}
.connect:hover {
  color: #121212;
  text-decoration: underline;
}
