* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scrollbar-width: none;
  overflow-x: hidden;
  overflow-y: auto;
}
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: #ffffff; /* color of the track */
}
::-webkit-scrollbar-thumb {
  background: rgb(97, 180, 205);
}

.container {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 20px 0 40px 0;
  margin-left: auto;
  margin-right: auto;
  background-image: url(images/Resources/Feedback-back.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}

/* Left Side what you think */

.left-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*padding: 0px 0 0 63px;*/
}

.left-wrapper h2 {
  display: flex;
  width: 100%;
  height: 164px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Bold";
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  align-items: center;
}

.left-wrapper p {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Reg";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  padding: 5%;
}

.left-wrapper > p:last-child {
  margin-top: 20px;
}

 .left-wrapper a {
	font-size: 20px;
	font-weight: 500;
   	color: #fff;
    text-decoration: none; /* Remove underline */
	 /*background-color: #fff;*/
}


.button {
    display: inline-block; /* Make the link behave like a button */
    background-color: #1b3054; /* Button background color #1b3054 #7d9cb0 */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    border: none; /* Remove border */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.button:hover {
    background-color: #8aa9bb; /* Change background color on hover */
}

.button {
        display: block; /* Make the button take the full width */
        width: 25%; /* Set width to 100% */
        text-align: center; /* Center the text */
        margin: 10px auto; /* Add some margin for spacing */
}


/* Right Side submit feedback */

.right-wrapper {
  width: 55%;
  height: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  border-radius: 5px;
  padding-bottom: 40px;
  background: #fff;
}

.right-content {
  padding: 0px 52px;
  width: 100%;
  margin-top: 70px;
  
}

.right-content h1 {
  display: flex;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  text-align: start;
  font-family: "Azo Sans Med";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-left: 9%;
}

.line {
  width: 395px;
  height: 3px;
  margin-bottom: 1rem;
  background: #2d4e7a;
  margin-left: 9%;
}

.input-wrapper p {
  display: flex;
  width: 400px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-family: "Azo Sans Med";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 12px;
  padding-left: 20px;
}

.input-wrapper {
  display: flex;
  margin-bottom: 13px;
  flex-direction: column;
  gap: 8px;
}

.input-wrapper input,
.input-wrapper textarea,
#emailList {
  width: 100%;
  height: 58px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(79, 79, 79, 0.01);
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.69);
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
  outline: transparent;
  border: transparent;
}
.option {
  width: 100%;
  height: 58px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(79, 79, 79, 0.01);
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.69);
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
  outline: transparent;
  border: transparent;
}

.full-name p {
  margin-top: 26px;
}

.input-wrapper textarea {
  height: 128px;
  padding-top: 1rem;
  resize: none;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 58px;
}

.submit-btn {
  display: flex;
  width: 247px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-family: "Azo Sans Med";
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #000;
  border: transparent;
  cursor: pointer;
  border-radius: 10px;
}

/* === General Form Layout === */
.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
}



.wpcf7-form p {
  margin-bottom: 20px;
}

/* === Input & Select Fields === */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.2s ease-in-out;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #0073aa;
  outline: none;
}

/* === Submit Button === */
.wpcf7 input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #005e8c;
}

/* === Dropdown Specific Styling === */
.wpcf7 select {
  appearance: none;
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox='0%200%2010%206'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M0%200l5%206%205-6z'%20fill='%23666'%3E%3C/path%3E%3C/svg%3E") no-repeat right 10px center;
  background-color: #fff;
  background-size: 12px 6px;
}

/* === Validation & Messages === */
.wpcf7-not-valid {
  border-color: red !important;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.screen-reader-response p {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
  /*background-color: #0073aa; //Success Blue */
  background-color: #28a745;
  color: #fff;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  display: none;
  /*animation: fadeIn 3.30s ease-in-out;*/
  /*visibility: hidden;*/
}

.screen-reader-response p.show {
  opacity: 1 !important;
  pointer-events: auto;
  animation: fadeIn 0.30s ease-in-out;
  display: block;
  transform: translate(-50%, 10px); /* Persist final animation state */
}

/* 7th - 03 - 2025 */
.screen-reader-response p.success {
  background-color: #28a745; /* Green */
  color: #fff;
}

.screen-reader-response p.error {
  background-color: #ffc107; /* Red */
  color: #fff;
}

.screen-reader-response p.fail {
  /* background-color: #ffc107;  Yellow/Orange */
  background-color: #dc3545;
  color: #fff;
}


.wpcf7-response-output {
  display: none;
}

.hidden-fields-container {
  border: none;
}

.screen-reader-response > ul {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 0); }
  to { opacity: 1; transform: translate(-50%, 10px); }
}


/* Media Queries */

@media (max-width: 1500px) {
  .button {
    display: block; /* Make the button take the full width */
    width: 30%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 10px auto; /* Add some margin for spacing */
  }
}

@media (max-width: 1320px) {
  .left-wrapper h2 {
    height: auto;
    font-size: 52px;
    margin-bottom: 30px;
  }

  .left-wrapper {
    padding: 100px 0 0 0;
  }
	
  .button {
    display: block; /* Make the button take the full width */
    width: 40%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 10px auto; /* Add some margin for spacing */
  }
	
}


@media (max-width: 1000px) {
  .container {
    flex-direction: column;
  }

  .left-wrapper {
    width: 100%;
    /*padding: 100px 0 70px 0;*/
  }

  .right-wrapper {
    width: 100%;
  }

  .right-content {
    padding: 70px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
	
  .right-content h1 {
    font-size: 30px;
	margin-left: 0px;
  }
	
  .line {
	margin-left: 0px;
	}

  .input-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
  }

  .input-wrapper input {
    width: 100%;
  }
	
  .wpcf7 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin-left: 5%;
    margin-right: 5%;
  }
	
  .button {
    display: block; /* Make the button take the full width */
    width: 100%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 10px auto; /* Add some margin for spacing */
  }
}

@media (max-width: 900px) {


@media (max-width: 600px) {
  .left-wrapper h2 {
    font-size: 42px;
    margin-bottom: 24px;
  }
	
  .right-content {
	margin-top: 0px;
	}

  .input-wrapper p,
  .input-wrapper input {
    font-size: 18px;
  }

  .submit-btn {
    width: 188px;
    font-size: 22px;
  }

  .right-wrapper {
    height: 100%;
  }

  .left-wrapper {
    /*padding: 86px 0 66px 0;*/
  }
}

@media (max-width: 450px) {

  .burger-menu {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .header {
    padding-left: 0%;
    padding-right: 18%;
  }
  .left-wrapper h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .right-content h1 {
    font-size: 24px;
  }

  .line {
    width: 250px;
  }

  .input-wrapper p,
  .input-wrapper input {
    font-size: 15px;
  }

  .left-wrapper p {
    font-size: 16px;
  }

  .submit-btn {
    width: 146px;
    font-size: 18px;
  }
}

@media (max-width: 374px) {
 
  .left-wrapper a {
	font-size: 14px;
  }
}