body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  box-sizing: border-box;
}

.container {
  display: flex;
  min-height: 100vh;
}

.aside {
  width: 15%;
  height: 100%;
  background-color: #141313;
  color: #fff;
  padding-top: 5%;
  box-sizing: border-box;
}

.navbar{
  min-height: 100vh;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.navbar ul li {
  margin: 20px 0;
}

.navbar li:hover {
  transform: scale(1.3);
  transition: ease-in-out 0.2s;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

#home {
  color: orange;
}

#home:hover {
  color: white;
}

/* Contact Section */
.contact-contentslide-down {
  padding: 10px;
  text-align: center;
  /* border: 2px solid green; */
  /* display: inline-block; */
  height: fit-content;
  margin-top: 25%;
  margin-left: 15%;
  width: 30vw;

}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 2px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: none;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  background-color: #d0a435;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #000000;
  color: white;
}

/* Animation Styles */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-down {
  animation: slideDown 1.5s ease-in-out;
}

/* Media Quary */
@media (max-width: 768px) {
  .container{
    height: fit-content;
  }
  .aside {
    width: 25%;
    height: 100%;
    background-color: #141313;
    color: #fff;
    padding-top: 25%;
    box-sizing: border-box;
  }

  .navbar ul {
    flex-direction: column;
    /* background-color: blue; */
    height: auto;
  }

  .navbar ul li {
    margin-top: 5px;
    padding: 5%;
  } 
}

/* Second media quary */
@media (max-width: 768px) {
  .contact-content {
    padding: 20px;
    text-align: center;
  }

  .contact-contentslide-down {
    padding: 10px;
    text-align: center;
    /* border: 2px solid green; */
    /* display: inline-block; */
    height: fit-content;
    padding-left: 10%;
    margin-top: 15%;
    margin-left: 5%;
    width: 60vw;

  }

  .contact-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-form {
    width: 100%;
  }

  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

  .form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  .form-group p {
    font-size: 14px;
    color: #555;
  }

  .btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}

/* Third media quary */
@media (max-width: 540px) {
  .container{
    height: auto;
  }
  .contact-contentslide-down {
    padding: 10px;
    text-align: center;
    /* border: 2px solid green; */
    /* display: inline-block; */
    height: fit-content;
    padding-left: 10%;
    margin-top: 15%;
    margin-left: 5%;
    width: 60vw;

  }

  .contact-content h1 {
    font-size: 10px;
    /* margin-bottom: 20px; */
  }

  .contact-form {
    width: 100%;
  }

  .form-group {
    /* margin-bottom: 20px; */
    text-align: left;
  }

  .form-group label {
    /* display: inline-block; */
    font-size: 10px;
    margin-bottom: 5px;
  }
  .form-group input{
    height: fit-content;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  .form-group p {
    font-size: 14px;
    color: #555;
  }

  .btn {
    width: 100%;
    padding: 5px;
    font-size: 10px;
  }
  
}
