body {
  margin: 0;
  padding: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  overflow-x: hidden;
  background-color: #D9AFD9;
  background-image: linear-gradient(0deg, #D9AFD9 0%, #97D9E1 100%);
  background-repeat: no-repeat;
  background-size: cover;

}


.error-popup {
  display: none;
  position: fixed;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: popupOpen 0.3s ease forwards;
}

@keyframes popupOpen {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.error-popup h1 {
  margin-top: 0;
  color: red;
}

.error-popup button {
  display: block;
  margin-top: 10px;
  padding: 5px 8px;
  background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.error-popup button:hover {
  background-image: linear-gradient(to right, rgb(222, 193, 192) 0%, rgb(94, 33, 35) 51%, #e95550 100%);


}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.top-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: black;
  padding: 15px 30px;
}

.connect-button {
  background-color: white;
  border-radius: 5px;
  box-shadow: #dae4ff 0px 4px 0px 0px;
  padding: 15px 10px;
  background-repeat: no-repeat;
  /* box-sizing: border-box; */
  width: 150px;
  height: 40px;
  color: #000;
  border: none;
  font-size: 15px;
  transition: all .3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  outline: none;
  margin-left: 30px;
}

.connect-button::before {
  content: "";
  background-color: #afc6f9;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.connect-button:hover::before {
  width: 100%;
}

.logo-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.logo-center img {
  width: 12%;
}


.navbar {
  display: flex;
  justify-content: space-between;
}

.help-button {
  padding: 5px 10px;
  margin-right: 30px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  background-image: linear-gradient(to right, #16222A 0%, #3A6073 51%, #16222A 100%);

}

.help-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;

}


.popup-contents {
  background-color: white;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  margin: 100px auto;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.logo img {
  width: 15%;
  margin-left: 60px;
  margin-top: 15px;
}

.hero-section {
  display: flex;
  margin-left: 80px;
  width: 100vw;
  height: 40%;
  color: white;
}

.input-section {
  width: 50%;
}

.input-section h1 {
  color: black;
  line-height: 25px;
  font-size: 25px;
  margin-top: 20px;
}

.custom-file-input {
  display: inline-block;
  background-image: linear-gradient(to right, #16222A 0%, #3A6073 51%, #16222A 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.custom-file-input:hover {
  background-color: #757574cb;
}

.checkbox-section {
  width: 40%;
  left: 0;
  margin-top: 6%;
  margin-right: 10%;
  border-radius: 10px;
  max-height: 100%;
  background-color: rgba(255, 255, 255, 0.496);
  color: black;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.checkboxes {
  padding: 20px;
  /* display: none; */
}

.form-section {
  margin-top: 20px;
  width: 90%;
  height: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.496);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;

}

.form-section .text-area-heading {
  font-weight: bold;
  font-size: 20px;
  color: black;
}



.form-section .textarea {
  width: 94%;
  height: 200px;
  /* resize: none; */
  color: black;
  /* border: none; */
  padding: 20px;
  font-size: medium;
  flex-grow: 1;
  margin-bottom: 10px;
  overflow-y: auto;
  /* background-color: transparent; */
}

.form-section .file-submit-button {
  padding: 8px 12px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 2%;
  bottom: 5px;
  background-image: linear-gradient(to right, #16222A 0%, #3A6073 51%, #16222A 100%);
}

.submit-button {
  width: 100%;
  margin-top: 10px;
  height: 30px;
}


/*  radioButtons section */
.containers {
  /* display: flex; */
  justify-content: space-between;
  width: 100%;
  height: 10%;
}

.radio-section {
  width: 50%;
  margin: 10px;
  margin-top: 40px;
  margin-left: 25%;
  padding: 10px;
  border: 1px solid #ccc;
  align-items: center;
  text-align: center;
  color: black;
  border-radius: 10px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.496);
}

.radio-content {
  justify-content: end;
  margin-left: 50px;
  align-items: end;
  font-size: 20px;
  line-height: 30px;
}

#radio5 {
  margin-left: 50px;
}

h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Button styles */

.centered-button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
}

.centered-button button {
  padding: 10px 20px;
  background-image: linear-gradient(to right, #1e3c72 0%, #2a5298 51%, #1e3c72 100%);
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #eeeee4;
}

button:focus {
  outline: none;
}

button:active {
  background-color: #eeeee4;
}

.sample-buttons {
  margin-left: 80px;
}

.sample-button {
  padding: 5px 7px;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(to right, #606c88 0%, #3f4c6b 51%, #606c88 100%);
  color: white;
  cursor: pointer;
}

/* popup form styles */
/* Popup container styles */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;

}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 1% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 820px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

/* Form styles (you can customize these further) */
#contactForm {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}





select {
  height: 40px;
}

option {
  border-radius: 0px;
}

.messsage-textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

.messsage-textarea:focus {
  outline: none;
}

.form-submit-button {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

.form-submit-button:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.scribble {
  margin-top: -12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  /* position: fixed; */
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 13px;
  padding: 5px;
  letter-spacing: 0.5px;
}

/* For laptops or smaller screens */
@media (max-width: 1024px) {
  footer {
    /* position: fixed; */
    margin-top: 0;
    /* Set margin-top to 0 for laptops */
  }
}

/* For larger screens */
@media only screen and (min-width: 992px) {
  footer {
    /* position: fixed; */
    margin-top: 6rem;
    /* Set margin-top to 6rem for larger screens */
  }
}


footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);

}

footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;

}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 2rem;
  margin-left: 20px;
  line-height: 1.2rem;
  font-size: 15px;
}

#openFooterPopup {
  border: none;
  background-color: transparent;
  font-weight: 600;
  color: rgb(4, 79, 253);
  cursor: pointer;
}

/* footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  font-size: 13px;
  padding: 5px 5px;
  letter-spacing: 0.5px;
  background-color: #dae4ff;
}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);
}

footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;
}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 2rem;
  margin-left: 20px;
  line-height: 1.2rem;
  font-size: 15px;
} */
::-webkit-scrollbar {
  height: 10px;
  width: 2px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
  width: 50px;
  /* Width of the horizontal scrollbar thumb */
}