* {
  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.3);
  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 */
}
#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%;
}
/******************* First section **********************/
.main-1 {
  width: 100%;
  height: 100vh; /* Full viewport height */
  /* background: url("bg-img.png") no-repeat center center/cover; */
  background-color: #303067;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  /* padding-top: 50vh; */
}

.text-container {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  transform: translateY(-140px); /* Slight upward adjustment */
}

.text-container h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.apply-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  transform: translateY(-100px); /* Slight upward adjustment */
}

.apply-wrap {
  width: 30%;
  font-size: 1rem;
  /* background: rgba(255, 255, 255, 0.1); */
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px); /* Blur effect */
  color: rgb(0, 0, 0); /* Ensures all text inside is white */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distributes space evenly */
  align-items: center; /* Centers items horizontally */
  height: 100%; /* Ensures full height for consistent alignment */
}

.apply-wrap h2 {
  margin-bottom: 1rem;
  color: rgb(0, 0, 0); /* White text for heading */
}

.apply-wrap p {
  margin-bottom: 1.5rem;
  color: rgb(0, 0, 0); /* White text for paragraph */
}

.apply-btn {
  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-decoration: none; /* Removes underline */
  text-align: center;
}

.apply-btn:hover {
  /* background: rgba(
    255,
    255,
    255,
    0.4
  ); Slightly darker background on hover */
  transform: scale(1.05); /* Slight zoom effect */
}
/******************** Fssai Details *********************/
.fssai-details {
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: space-between; /* Even spacing between boxes */
  align-items: center; /* Center vertically within the section */
  padding: 1.5rem; /* Add padding for better spacing */
  font-size: 1.3rem;
}

.fssai-inner {
  width: 45%; /* Ensure equal width for both boxes */
  height: 90%; /* Fixed height to ensure uniform size */
  border-radius: 15px; /* Rounded corners */
  padding: 1.5rem;
  background: #f5f5f5; /* Neutral background color for visibility */
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: justify; /* Center text */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* Evenly distribute content vertically */
  align-items: center; /* Center content horizontally */
}

.fssai-inner h2 {
  margin-bottom: 0.5rem;
}

.fssai-inner p {
  line-height: 1.6;
}
/******************** fssai users ********************/
.fssai-users {
  width: 100%;
  text-align: center;
}
.user-head {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 2% 10%;
}
.user-list {
  /* height: 20vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 100%;
  padding: 3% 10%;
}
.user {
  box-shadow: rgba(100, 100, 111, 0.2) 7px 7px 29px 0;
  background-color: rgb(228, 228, 228);
  text-align: center;
  padding: 20px;
  margin: 8px;
  border-radius: 10%;
  color: rgb(146, 146, 146);
  /* font-size: 15px; */
  font-weight: 800;
  transition: 0.3s;
}
/*********************** About ********************/
.about-head {
  width: 100%;
  text-align: center;
  padding: 2% 15%;
}
.about-head h2 {
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 2%;
}
.about-head p {
  text-align: justify;
  font-size: 1.2rem;
  padding-top: 2%;
}
/******************* 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) {
  .apply-wrap {
    font-size: 0.7rem;
  }
  /* #query-form {
    width: 40%;
  } */
  .text-container h1 {
    font-size: 2rem;
  }
  .inner-header{
    gap: 15px;
  }
  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;
  }
  .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;
  }
}
@media (max-width: 500px) {
  .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-bottom: 10%;
  }
  .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;
  }
  
}
@media (max-width: 380px) and (max-height: 670px) {
  .main-1 {
    padding-bottom: 0%;
  }
}
