
.black-background {
  width: 100%;
  background-color: black;
  color: white;
  padding: 10px;
  box-sizing: border-box;
}

.hover-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 90%;
  margin: 0 auto;
  background-color: #1c1c1cda;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  margin-bottom: 30px;
}

.hover-container img {
  width: 10%;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

.form-group {
  width: 100%;
  text-align: left;
  font-family: calibri;
}

.form-group label {
  color: #fae1e1;
  font-size: 0.9em;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: calibri;
  background-color: #333;
  color: #fff;
}

.contact-submit {
  color: white;
  display: block;
  width: 90%;
  background: green;
  border-radius: 10px;
  padding: 5px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

/* Hover effect */
.contact-submit:hover {
  background: darkgreen; /* Darken the background on hover */
  transform: scale(1.05); /* Slightly increase size on hover */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

/* Contact List Styling */
.contact-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-item {
  flex: 1;
  padding: 7px;
  border-bottom: 1px solid #342121;
  text-align: center;
  min-width: 200px;
}

.email-item {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  border: none;
}

.whatsapp-item {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  border: none;
}

.name {
  font-family: Bebas;
  font-weight: 400;
  font-size: large;
}

.contact-item a {
  text-decoration: none;
  color: #fff;
}

.contact-number {
  color: #fae1e1;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 38px;
  margin-bottom: 15px;
}

.custom-file-input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 2;
}

.custom-file-label {
  display: block;
  height: 100%;
  border: 1px solid #696969;
  background-color: #202020a3;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-file-label:hover {
  background-color: #393939;
}

.uploaded-document {
  display: inline-block;
  margin: 10px;
  position: relative;
}

.remove-button {
  margin-left: 10px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
}

.remove-button:hover {
  background-color: darkred;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hover-container {
    padding: 10px;
    width: 100%;
  }

  .hover-container img {
    width: 10%;
  }

  .contact-item {
    padding: 5px;
  }

  .name {
    font-size: medium;
  }

  .contact-list {
    flex-direction: column;
    gap: 5px;
  }

  .email-item {
    margin-top: 10px;
    width: 100%;
  }

  .whatsapp-item {
    margin-top: 10px;
    width: 100%;
  }
}
