* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Source Sans 3", sans-serif;
}

body {
  width: 100%;
  height: 100%;
  /* overflow: hidden; Ensures no extra scrolling for the 100vh layout */
}
/********************* whatsapp logo ********************/
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000; /* Ensures it stays on top of other elements */
  background-color: #25d366; /* WhatsApp green color */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-button a {
  color: white;
  font-size: 30px; /* Icon size */
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}
/******************** call button ***************/
.call-button {
  position: fixed;
  bottom: 20px; /* Adjusts vertical position */
  left: 20px; /* Places it on the left side */
  background-color: #3d83d2; /* Green color */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensures it stays on top */
}

.call-button a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.call-button:hover {
  background-color: #218838; /* Darker green on hover */
}

/******************** query form *****************/
#query-form {
  position: fixed;
  top: 30%;
  left: -100%; /* Default hidden position */
  width: auto;
  height: auto;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0 7px 29px 0;
  transition: left 0.3s ease; /* Smooth sliding effect */
  padding: 20px;
  z-index: 1000;
  overflow-y: scroll;
  border-top-right-radius: 10px; /* Rounded top-right corner */
  border-bottom-right-radius: 10px; /* Rounded bottom-right corner */
  color: #000000;
}
#query-form::-webkit-scrollbar {
  display: none;
}
#query-form h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

#query-form form {
  display: flex;
  flex-direction: column; /* Default column layout for form fields */
}

#query-form .button-container {
  display: flex; /* Use flexbox to arrange buttons in a single row */
  justify-content: space-between; /* Adjust spacing between buttons */
  gap: 10px; /* Optional: Add space between the buttons */
  width: relative;
}

#query-form label {
  font-size: 14px;
  margin-bottom: 2px;
}

#query-form input,
#query-form textarea,
#query-form button {
  margin-bottom: 15px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: rgb(237, 237, 237);
  color: #000000;
}

#query-form textarea {
  resize: none;
}

#query-form button {
  background-color: #000000;
  color: #fff;
  cursor: pointer;
  padding: 10px 40px;
}

#query-form button:hover {
  background-color: #3d3d3d;
}

#form-open {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 15px 15px 15px 10px;
  cursor: pointer;
  z-index: 1001;
}

#form-open i {
  font-size: 18px;
}
/******************** header ********************/
.header {
  align-items: center;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  height: auto; /* Adjusted for proportion */
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
.inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 25px;
}

img {
  height: 44px;
  width: 100px;
}

.logo4 {
  height: 60px;
}

.head-text {
  font-size: 0.7rem;
  width: 65%;
  text-align: center;
}
/******************** navbar **********************/
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  /* gap: 10px; */
  /* align-items: center; */
}
nav li {
  list-style: none;
  padding: 1rem;
  border: solid 0.5px transparent;
  /* border-radius: 100%; */
  text-align: center;
  transition: 0.3s ease-out;
}
nav li:hover {
  border-bottom: black 1px solid;
  background-color: #ebebeb;
}
nav li a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
/* colapse */
#nav-open {
  color: #000000;
  display: none;
  margin: 4% 2%;
}
#nav-colapse {
  font-size: 20px;
  font-weight: 800;
  /* display: none; */
  height: 100%;
  width: 40%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: -50%;
  background: rgb(235, 235, 235);
  overflow-x: hidden;
  transition: 0.4s;
  /* padding-top: 60px; */
}
#nav-colapse a {
  display: block;
  text-decoration: none;
  padding-bottom: 10%;
  margin-left: 10px;
  width: 100%;
  color: #000000;
  transition: 0.8s;
}
#nav-colapse button {
  /* background: linear-gradient(to right, #8d8d8da1 0%, #2d2d2d); */
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  color: #000000;
  padding: 4%;
  text-align: left;
  width: 100%;
  font-size: 25px;
  font-weight: 800;
  border: transparent;
  margin-bottom: 15%;
}
/****************** about-fssai ******************/
.about-fssai {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 5%;
  position: relative;
  padding-top: 15%;
}
.about-fssai h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.about-fssai p {
  text-align: justify;
  font-size: 1.2rem;
  padding-top: 2%;
}

/******************* Types of fssai ******************/
.fssai-types {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 5%;
  position: relative;
  padding-top: 15%;
}
.fssai-types h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.fssai-types p {
  text-align: justify;
  font-size: 1.2rem;
  padding-top: 2%;
}
/***************** Document *********************/
.document {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 5%;
  position: relative;
  padding-top: 15%;
}
.document h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.document ul {
  text-align: left;
  font-size: 1.2rem;
  padding: 2%;
}
.document a {
  text-decoration: none;
}
.license {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: normal;
}
.inner-license {
  display: flex;
  height: auto;
  justify-content: space-between;
  margin-bottom: 2%;
  /* gap: 20px; */
}
.license-text {
  width: 50vw;
}
.license-img {
  /* height: 50vh; */
  width: 50vw;
  align-self: start;
}
.license img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/******************* penalty ********************/
.penalty {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 5%;
  position: relative;
  padding-top: 15%;
}
.penalty h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.penalty ul {
  text-align: justify;
  font-size: 1.2rem;
  padding: 2% 4%;
}
/****************** Complaint *******************/
.complaint {
  height: auto;
  width: 100%;
  text-align: center;
  position: relative;
  padding-top: 15%;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 15%;
}
.complaint h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
#complaint-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0 7px 29px 0;
  padding: 20px;
  border: 10px;
}
#complaint-form form {
  text-align: justify;
}
#complaint-form .button-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Optional: Add space between the buttons */
  width: relative;
}
#complaint-form label {
  font-size: 14px;
  margin-bottom: 2px;
}

#complaint-form input,
#complaint-form textarea,
#complaint-form button,
#complaint-form select {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: rgb(237, 237, 237);
  color: #000000;
}

#complaint-form textarea,
input,
select {
  /* resize: none; */
  width: 100%;
  font-size: large;
  resize: vertical;
  color: #000000;
}

#complaint-form button {
  background-color: #000000;
  color: #fff;
  cursor: pointer;
  padding: 10px 40px;
}

#complaint-form button:hover {
  background-color: #3d3d3d;
}

/******************* policy pages *******************/
.policy {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 5%;
  position: relative;
  padding-top: 15%;
}
.policy h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.policy ul {
  text-align: justify;
  font-size: 1.2rem;
  padding: 2% 4%;
}
/******************* swiggy-zomato *********************/
/* .complaint {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 5% 10%;
}

.complaint h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  padding-bottom: 2%;
} */

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background: white; */
  box-shadow: 0 7px 29px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
}

#multiStepForm {
  width: 100%;
  background: transparent;
  backdrop-filter: blur(5px);
  color: #dadada;
}

.form-step {
  display: none;
  text-align: left;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  text-align: center;
  margin-bottom: 15px;
}

.form-container label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.form-container input,
textarea,
select {
  font-size: 20px;
  width: 100%;
  padding: 10px;
  color: #dadada;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  /* background-color: rgb(237, 237, 237); */
  background: transparent;
  backdrop-filter: blur(10px);
}

.form-container textarea {
  resize: vertical;
}

.form-container button {
  background-color: #fff;
  color: #000000;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin: 0px 10px;
}

.form-container button:hover {
  scale: 1.2;
  margin: 0px 20px;
  transition: 0.3s;
}

.form-container .prev-btn {
  background-color: #fff;
}

.form-container .prev-btn:hover {
  background-color: #fff;
}

/******************* food-test ******************/
.food-testing {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0% 2%;
  position: relative;
  padding-top: 12%;
  margin-bottom: 2%;
}
.food-testing h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.testing-list {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}
.test-cover {
  width: 50%;
  background: #fff;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  text-align: left;
  padding: 2%;
}
.test-cover h2 {
  width: 100%;
  background: #f5f5f5;
  text-align: center;
}
.part-1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2%;
  padding: 2%;
  font-size: medium;
}

.part-1 table {
  width: 100%;
  border-collapse: collapse; /* Ensures borders don't double up */
  border: 1px solid #ccc;
  text-align: left; /* Aligns text to the left */
  margin-top: 2%;
}

.part-1 table th,
.part-1 table td {
  padding: 5px;
  border: 1px solid #ddd; /* Adds subtle border for better readability */
}

.part-1 table th {
  background-color: #f5f5f5; /* Light gray background for headers */
  font-weight: bold;
  text-transform: capitalize;
}

.part-1 table td {
  background-color: #fff; /* White background for normal cells */
}
.part-1 .test-text {
  width: 50%;
  height: 50%;
}
.part-1 .test-img {
  width: 50%;
  height: 50%;
}
.part-1 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.part-1 p {
  font-size: larger;
}
.part-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: medium;
  padding: 2%;
}
.part-2 ul {
  padding: 2% 4%;
}
.test-cover button {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0); /* Transparent button background */
  color: rgb(255, 255, 255); /* White text */
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  transition: transform 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.5); /* Semi-transparent border */
  text-align: center;
  width: 30%;
  align-self: last baseline;
}
.test-cover a {
  color: #fff;
  text-decoration: none;
}

.test-cover button:hover {
  /* background: rgba(
    255,
    255,
    255,
    0.4
  ); Slightly darker background on hover */
  transform: scale(1.05); /* Slight zoom effect */
}
/******************* footer *********************/
footer {
  position: relative;
  width: 100%;
  height: 35vh;
  bottom: 0;
  background-color: #303067;
  color: #fff;
  font-size: auto;
}
footer .personal {
  display: flex;
  justify-content: space-between;
  padding: 3% 5%;
}
footer .sec1 {
  width: 40%;
}
footer .sec2 {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
footer .f-logo-list {
  display: flex;
  gap: 10px;
}
.f-logo {
  transition: 0.2s;
}
.f-logo:hover {
  transform: scale(1.2);
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer .copyright {
  width: 100%;
  text-align: center;
}

/***************** Responsive starts ********************/
@media (max-width: 1023px) {
  .about-fssai,
  .fssai-types,
  .document,
  .penalty,
  .complaint,
  .policy {
    padding-top: 22%;
  }
  .document ul {
    font-size: 1rem;
  }

  .apply-wrap {
    font-size: 0.7rem;
  }
  /* #query-form {
      width: 40%;
    } */
  .text-container h1 {
    font-size: 2rem;
  }
  img {
    height: 34px;
    width: 80px;
  }
  .logo4 {
    height: 60px;
  }
  .head-text {
    font-size: 0.5rem;
    width: 65%;
    text-align: center;
  }
  .fssai-details {
    font-size: 1rem;
  }
  .fssai-inner p {
    line-height: 1.4;
  }
}

@media (max-width: 720px) {
  nav {
    display: none;
  }
  #nav-open {
    display: flex;
  }
  .about-fssai,
  .fssai-types,
  .document,
  .penalty,
  .complaint,
  .policy {
    padding-top: 28%;
  }
  .complaint {
    padding-left: 10%;
    padding-right: 10%;
  }
  .complaint h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding-bottom: 2%;
  }
  #multiStepForm input{
    font-size: 15px;
  }
  .inner-license {
    flex-direction: column;
  }
  .license-img,
  .license-text {
    width: 100%;
    height: auto;
  }
  .head-text {
    font-size: 7px;
  }
  img {
    height: 25px;
    width: 70px;
  }
  .logo4 {
    height: 35px;
  }
  .fssai-details {
    font-size: 0.8rem;
  }
  .user-head {
    font-size: 20px;
  }
  .inner-header {
    padding: 1rem;
    gap: 10px;
  }
  .main-1 {
    padding-top: 60vh;
  }
  nav li a {
    font-size: 10px;
  }
  #query-form .button-container {
    display: flex; /* Use flexbox to arrange buttons in a single row */
    /* flex-direction: column; */
    justify-content: center; /* Adjust spacing between buttons */
    gap: 10px; /* Optional: Add space between the buttons */
    width: relative;
  }
  .head-text {
    font-size: 0.4rem;
    width: 55%;
    text-align: center;
  }
  .user-list {
    padding: 3% 2%;
  }
  .user {
    padding: 10px;
    font-size: 15px;
  }
  .about-head {
    padding: 5%;
  }
  .about-head h2 {
    font-size: 1.4rem;
  }
  .about-head p {
    font-size: 0.8rem;
  }
  .testing-list {
    flex-direction: column;
  }
  .test-cover {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .about-fssai,
  .fssai-types,
  .document,
  .penalty,
  .complaint,
  .policy {
    padding-top: 32%;
  }
  .head-text {
    font-size: 0.3rem;
    width: 60%;
  }
  img {
    height: 20px;
    width: 65px;
  }
  .logo4 {
    height: 30px;
  }
  nav li a {
    font-size: 8px;
  }
  nav li {
    padding: 0.3rem;
  }
  .inner-header {
    padding: 0.5rem;
    gap: 0;
  }
  .apply-list {
    flex-direction: column;
  }
  .apply-wrap {
    width: 100%;
    font-size: 0.5rem;
  }
  .text-container h1 {
    font-size: 1.5rem;
  }
  .apply-wrap {
    padding: 1rem;
  }
  .apply-wrap h2 {
    margin-bottom: 0.5rem;
  }
  .apply-wrap p {
    margin-bottom: 1rem;
  }
  .main-1 {
    padding-top: 40vh;
  }
  .text-container {
    margin-bottom: 0;
  }
  .fssai-details {
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
  .fssai-inner {
    width: 100%;
    height: 100%;
    justify-items: center;
  }
  .user-head {
    font-size: 15px;
  }
  .part-1{
    flex-direction: column-reverse;
  }
  .part-1 .test-text{
    width: 100%;
  }
  .part-1 .test-img{
    width: 100%;
  }
}
