@font-face {
  font-family: "alth";
  src: url(/css/alethianext-light.otf);
}

body {
  box-sizing: border-box;
}

/* Loading screen styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff; /* Fallback background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's above everything else */
}

/* Video styles */
#loading-video {
  min-width: 100vw;
  min-height: 100vh;
}

/****************** Navigation Bar ******************/

nav {
  z-index: 999;
  background-color: rgb(255, 255, 255);
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 5px 20px grey;
}

.logos {
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 0 20px;
}

.logos a {
  width: 270px;
  display: flex;
  text-decoration: none;
  object-fit: contain;
}

.logo {
  width: 50px;
  height: 60px;
  object-fit: cover;
}

.slogan {
  width: 220px;
  height: 60px;
  object-fit: contain;
  margin: 0 50px 0 10px;
}

.navigators {
  height: 100%;
  margin: 0 20px 0 0;
  display: none;
  flex-direction: column;
}

.navigators.active {
  display: flex;
}

.navigators ul {
  flex-direction: column;
  padding: 0;
  list-style: none;
}

.navigators ul li {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.navigators ul li a {
  margin: 2px 0;
  padding: 5px;
  text-decoration: none;
  color: rgb(98, 98, 98);
  font-family: "alth";
  font-size: 18px;
}

#contact {
  width: fit-content;
  background-color: rgba(255, 171, 14, 0.549);
  border-radius: 7px;
  color: rgb(71, 71, 71);
}

#contact:hover {
  background-color: rgb(190, 124, 1);
  border-radius: 7px;
  color: rgb(255, 255, 255);
}

.togglebtn {
  position: absolute;
  right: 10px;
  top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 30px;
  height: 24px;
}

.togglebtn .bar {
  height: 3px;
  width: 100%;
  background-color: grey;
  border-radius: 20px;
}

@media screen and (min-width: 1100px) {
  .togglebtn {
    display: none;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .navigators {
    height: 100px;
    margin: 0 20px 0 0;
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .navigators ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navigators ul li {
    display: flex;
  }

  .navigators ul li a {
    margin: o;
    height: fit-content;
    width: fit-content;
    padding: 5px;
    text-decoration: none;
    color: rgb(98, 98, 98);
    font-family: "alth";
    font-size: 18px;
  }

  .navigators ul li:not(:last-child) a:hover {
    text-decoration: underline;
    text-shadow: 0.2px 0.2px rgba(128, 128, 128, 0.5);
    color: #b08100;
  }
}

/****************** Body Part ******************/

main {
  margin-top: 115px;
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.container_index {
  margin: auto;
  max-width: 1500px;
  box-sizing: border-box;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.slide-in {
  transform: translateY(100px);
  transition: transform 0.55s ease;
}
.fade-in.active {
  opacity: 1;
}
.slide-in.active {
  transform: translateY(0);
}

/********************************************/

.intro {
  height: 110vh;
  width: 100vw;
  min-height: 700px;
  display: flex;
  flex-direction: column;
}

.text-part {
  height: 65%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  background: rgb(85, 178, 233);
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
}

.text-part p {
  margin: 0 20px 0 20px;
  color: rgb(66, 68, 24);
  font-family: "alth";
  font-size: 12pt;
}

#title {
  font-family: "alth";
  font-weight: bolder;
  font-size: 20pt;
  color: rgb(66, 68, 24);
}

.text-part a {
  margin: 0 0 0 20px;
  width: fit-content;
  text-decoration: none;
  padding: 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(104, 107, 6);
  border-radius: 7px;
  font-family: "alth";
  font-size: 12pt;
}

.pic-part {
  height: 35%;
  width: 100%;
  background: rgb(85, 178, 233);
  background: linear-gradient(
    320deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
}

.pic-part video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.pic-part img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

@media screen and (min-width: 700px) {
  .intro {
    padding: 0 20px;
    min-height: 500px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
  }

  .text-part {
    display: flex;
    justify-content: space-between;
    min-width: 575px;
    padding: 50px 20px 50px 50px;
    width: 50%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: rgb(85, 178, 233);
    background: linear-gradient(
      222deg,
      rgba(85, 179, 233, 0.6) 0%,
      rgba(215, 176, 57, 0.6) 69%
    );
    box-sizing: border-box;
  }

  #title {
    color: rgb(56, 56, 52);
    font-family: "alth";
    font-weight: bolder;
    font-size: 30pt;
  }

  .text-part p {
    color: rgb(56, 56, 52);
    font-family: "alth";
    font-weight: 500;
    font-size: 13pt;
  }

  .text-part a {
    width: fit-content;
    text-decoration: none;
    padding: 10px;
    color: rgb(255, 255, 255);
    background-color: rgb(186, 134, 30);
    border-radius: 5px;
    font-family: "alth";
    font-size: 12pt;
  }

  .pic-part {
    min-height: 412px;
    max-width: 50%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    background: rgb(85, 178, 233);
    background: linear-gradient(
      140deg,
      rgba(85, 179, 233, 0.6) 0%,
      rgba(215, 176, 57, 0.6) 69%
    );
  }

  .pic-part video {
    animation: move 1s ease-in-out 0s 1 alternate none;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px 19px 19px 20px;
  }

  .pic-part img {
    animation: move 1s ease-in-out 0s 1 alternate none;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px 19px 19px 20px;
  }

  @keyframes move {
    from {
      margin-left: 400px;
    }
    to {
      margin-left: 0px;
    }
  }
}

@media screen and (min-width: 1300px) {
  .intro {
    height: 80vh;
  }

  .text-part {
    display: flex;
    justify-content: space-around;
    padding: 50px 70px;
  }
}

/************************ After Sanmana Introduction **************************/

.after_intro {
  min-height: 250px;
  padding: 20px 0;
  margin: auto;
}

.values-section-index {
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
  padding: 60px 20px 20px 20px;
  box-sizing: border-box;
}

.values-section-index h2 {
  color: rgb(56, 55, 52);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bold;
  font-size: 25pt;
}

.values-list-index {
  display: grid;
  grid-template-columns: auto;
  grid-gap: 20px;
}

.value-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.612);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: slide 3s ease infinite alternate;
}

@keyframes slide {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

.value-item-index p {
  margin-bottom: 20px;
  text-align: justify;
  font-family: "alth";
  font-size: 13pt;
  color: rgb(66, 68, 24);
}

.value-item-index .highlight-index {
  box-sizing: border-box;
  color: rgb(56, 55, 52);
  font-family: "alth";
  font-weight: bolder;
  font-size: 14pt;
}

.value-item-index p {
  display: none;
}

.value-item-index:hover p {
  display: block;
}

.value-item-index:hover {
  animation: none;
  justify-content: space-evenly;
  clip-path: none;
  translate: 0 -5px;
  box-shadow: 7px 7px 20px rgba(128, 128, 128);
}

@media screen and (min-width: 1000px) {
  .after_intro {
    padding: 20px;
    margin: auto;
  }

  .values-section-index {
    border-radius: 20px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
  }

  .values-list-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-gap: 20px;
  }

  .value-item-index {
    margin-bottom: 0;
    height: 300px;
    clip-path: ellipse(40% 40% at 50% 50%);
  }
}

@media screen and (min-width: 1250px) {
  .values-section-index {
    border-radius: 20px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
  }

  .values-list-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    grid-gap: 20px;
  }

  .value-item-index {
    margin-bottom: 0;
    height: 300px;
    clip-path: ellipse(40% 45% at 50% 50%);
  }
}

@media screen and (min-width: 1450px) {
  .values-list-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 20px;
  }

  .values-section-index {
    border-radius: 20px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
  }

  .value-item-index {
    margin-bottom: 0;
    height: 300px;
    clip-path: ellipse(38% 50% at 50% 50%);
  }
}

/********************************************************************/
.second {
  height: 110vh;
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-direction: column;
}

.pic-part2 {
  width: 100%;
  height: 35%;
  background: rgb(52, 165, 213);
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.7) 0%,
    rgba(107, 107, 107, 0.7) 69%
  );
}

.pic-part2 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
}

.text-part2 {
  height: 65%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  background: rgb(52, 165, 213);
  background: linear-gradient(
    222deg,
    rgba(52, 165, 213, 0.7) 0%,
    rgba(107, 107, 107, 0.7) 69%
  );
}

.text-part2 p {
  margin: 0 20px 0 20px;
  color: rgb(56, 56, 52);
  font-family: "alth";
  font-weight: 500;
  font-size: 12pt;
}

#title2 {
  color: rgb(56, 56, 52);
  font-family: "alth";
  font-weight: bolder;
  font-size: 20pt;
}

.text-part2 a {
  margin: 0 0 0 20px;
  width: fit-content;
  text-decoration: none;
  padding: 10px;
  color: #ffffff;
  background-color: rgb(15, 107, 115);
  border-radius: 7px;
  font-family: "alth";
  font-size: 12pt;
}

@media screen and (min-width: 700px) {
  .second {
    padding: 0 20px;
    box-sizing: border-box;
    min-height: 500px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
  }

  .pic-part2 {
    min-height: 412px;
    max-width: 50%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: rgb(52, 165, 213);
    background: linear-gradient(
      140deg,
      rgba(52, 165, 213, 0.7) 0%,
      rgba(107, 107, 107, 0.7) 69%
    );
  }

  .pic-part2 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 19px 20px 20px 19px;
  }

  .text-part2 {
    min-height: 412px;
    min-width: 575px;
    width: 50%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    display: flex;
    padding: 50px 70px;
    justify-content: space-between;
    align-items: left;
    background: rgb(52, 165, 213);
    background: linear-gradient(
      222deg,
      rgba(52, 165, 213, 0.7) 0%,
      rgba(107, 107, 107, 0.7) 69%
    );
    box-sizing: border-box;
  }

  #title2 {
    color: rgb(56, 56, 52);
    font-family: "alth";
    font-weight: bolder;
    font-size: 30pt;
  }

  .text-part2 p {
    color: rgb(56, 56, 52);
    font-family: "alth";
    font-weight: 500;
    font-size: 13pt;
  }

  .text-part2 a {
    width: fit-content;
    text-decoration: none;
    padding: 10px;
    color: rgb(255, 255, 255);
    background-color: rgb(12, 68, 73);
    border-radius: 5px;
    font-family: "alth";
    font-size: 12pt;
  }
}

@media screen and (min-width: 1300px) {
  .second {
    height: 80vh;
  }

  .text-part2 {
    display: flex;
    justify-content: space-around;
    padding: 50px 70px;
  }
}

.after_second {
  padding: 20px;
}

@media screen and (max-width: 780px) {
  .after_second {
    margin: 10px 0;
    padding: 0;
  }
}

.after_staffing {
  min-height: 250px;
  padding: 20px 0;
}

@media screen and (min-width: 1000px) {
  .after_staffing {
    padding: 20px;
    margin: auto;
  }
}

.after_staffing h2 {
  font-family: "alth";
  font-size: 15pt;
  margin-bottom: 40px;
}

.after_staffing img {
  width: 110px;
}

.after_staffing .value-item-index span {
  display: none;
}

.after_staffing .value-item-index:hover span {
  display: block;
}

/************* FOOTER ****************/

footer {
  margin-top: 20px;
  width: 100%;
  height: 60vh;
  background-color: rgb(71, 71, 71);
  box-sizing: border-box;
}

footer .foottop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 80%;
  background-color: rgb(46, 46, 46);
  background: linear-gradient(
    140deg,
    rgba(52, 52, 52, 0.6) 0%,
    rgba(81, 53, 26, 0.6) 69%
  );
  box-sizing: border-box;
}

.section1 {
  min-width: 180px;
  min-height: 160px;
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section1 img {
  margin: 0 10px 0 10px;
  padding: 10px;
  width: 180px;
  height: 160px;
  border-radius: 20px;
  animation: flip 15s linear infinite;
}

@keyframes flip {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.section2 {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section2 a {
  margin: 20px 0 0 70px;
  color: rgb(255, 255, 255);
  font-family: "alth";
  text-decoration: none;
  font-size: 12pt;
}

.section2 a h1 {
  font-size: 20pt;
  border-bottom: rgb(176, 129, 0) 2px solid;
}

.section3 {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section3 a {
  margin: 20px 0 0 70px;
  color: rgb(255, 255, 255);
  font-family: "alth";
  text-decoration: none;
  font-size: 12pt;
}

.section3 a h1 {
  font-size: 20pt;
  border-bottom: rgb(176, 129, 0) 2px solid;
}

.section3 a h2 {
  width: fit-content;
  border-bottom: rgb(176, 129, 0) 2px solid;
  font-size: 16pt;
}

footer .footbottom {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.footbottom p {
  font-family: "alth";
  color: rgb(255, 255, 255);
  margin-left: 5px;
  font-size: 11pt;
}

.footbottom a {
  text-decoration: none;
  font-family: "alth";
  color: rgb(255, 255, 255);
  margin-left: 5px;
  font-size: 11pt;
}

.footbottom a:not(:last-of-type) {
  padding-right: 7px;
  border-right: rgb(255, 255, 255) 2px solid;
}

footer .items {
  width: 33%;
  height: 100%;
  display: flex;
  align-items: center;
}

footer .footbottom :not(:first-child) {
  justify-content: center;
}

footer .linkedin img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

@media screen and (max-width: 815px) {
  footer {
    margin-top: 10px;
    width: 100%;
    height: auto;
    background-color: rgb(71, 71, 71);
  }

  footer .foottop {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75%;
    background-color: rgb(46, 46, 46);
    background: linear-gradient(
      140deg,
      rgba(52, 52, 52, 0.6) 0%,
      rgba(81, 53, 26, 0.6) 69%
    );
  }

  .section1 {
    margin: 10px 0;
    min-width: 180px;
    min-height: 160px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section1 img {
    margin: 0 10px 0 10px;
    padding: 10px;
    width: 180px;
    height: 160px;
    border-radius: 20px;
    animation: flip 15s linear infinite;
  }

  @keyframes flip {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(360deg);
    }
  }

  .section2 {
    margin: 10px 0;
    width: 90%;
    display: block;
    align-items: center;
  }

  .section2 a {
    display: block;
    margin: 20px 0 0 0;
    color: rgb(255, 255, 255);
    font-family: "alth";
    text-decoration: none;
    font-size: 12pt;
  }

  .section2 :not(:first-child) {
    padding-left: 5px;
    border-left: rgb(176, 129, 0) 2px solid;
  }

  .section2 a h1 {
    margin: 10px 0 20px 0;
    font-size: 20pt;
    border-bottom: rgb(176, 129, 0) 2px solid;
  }

  .section3 {
    margin: 10px 0;
    width: 90%;
    display: block;
    flex-direction: row;
  }

  .section3 a {
    display: block;
    margin: 20px 0 0 0;
    color: rgb(255, 255, 255);
    font-family: "alth";
    text-decoration: none;
    font-size: 12pt;
  }

  .section3 a h1 {
    margin: 10px 0 20px 0;
    font-size: 20pt;
    border-bottom: rgb(176, 129, 0) 2px solid;
  }

  .section3 :not(:first-child, :last-child) {
    padding-left: 5px;
    border-left: rgb(176, 129, 0) 2px solid;
  }

  .section3 a h2 {
    margin: 20px 0 20px 0;
    width: fit-content;
    border-bottom: rgb(176, 129, 0) 2px solid;
    font-size: 16pt;
  }

  footer .footbottom {
    overflow: hidden;
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .items {
    width: 100%;
    height: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footbottom div:nth-of-type(2) {
    width: 90%;
  }

  .footbottom p {
    text-decoration: none;
    font-family: "alth";
    font-size: 10pt;
    color: rgb(255, 255, 255);
  }

  .footbottom a {
    text-decoration: none;
    font-family: "alth";
    font-size: 10pt;
    color: rgb(255, 255, 255);
    padding: 0 3px 0 3px;
  }

  .footbottom a:not(:last-of-type) {
    border-right: rgb(255, 255, 255) 1px solid;
  }

  footer .linkedin img {
    margin: 10px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
  }
}

/**********************************************  ABOUT US  ************************************************/

.container {
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  /*overflow-y: auto;
  overflow-x: hidden;*/
}

.inWrap {
  display: flex;
  justify-content: center;
}

.inWrap h1 {
  font-family: "alth";
  font-size: 22pt;
  color: rgb(66, 68, 24);
}

.container p {
  margin-bottom: 20px;
  text-align: justify;
  font-family: "alth";
  font-size: 14pt;
  color: rgb(66, 68, 24);
}

/* About Us Section */
.about-section {
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
  padding: 20px 70px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  color: rgb(66, 68, 24);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bolder;
  font-size: 25pt;
}

/* Values Section */
.values-section {
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.7) 0%,
    rgba(107, 107, 107, 0.7) 69%
  );
  border-radius: 10px;
  padding: 20px 70px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.values-section h2 {
  color: rgb(56, 55, 52);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bold;
  font-size: 25pt;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 20px;
}

.value-item {
  background-color: rgba(255, 255, 255, 0.512);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.value-item .highlight {
  color: rgb(56, 55, 52);
  font-family: "alth";
  font-weight: bolder;
  font-size: 14pt;
}

/* Additional Information Section */
.additional-info {
  background: rgb(85, 178, 233);
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.additional-info h2 {
  color: rgb(66, 68, 24);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bolder;
  font-size: 25pt;
}

.additional-info ul {
  list-style-type: disc;
  margin-left: 30px;
}

.additional-info ul li {
  margin-bottom: 10px;
  font-family: "alth";
  font-size: 14pt;
}

/* Testimonial Section */
.testimonial {
  background: rgb(157, 177, 55);
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.testimonial h2 {
  color: rgb(56, 56, 52);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bold;
  font-size: 25pt;
}

.testimonial p {
  text-align: center;
  font-family: "alth";
  font-style: italic;
  font-size: 14pt;
  margin-bottom: 10px;
}

.testimonial p.author {
  text-align: right;
  font-weight: bolder;
}

@media screen and (max-width: 780px) {
  .about-section {
    padding: 20px;
  }

  .values-section {
    padding: 20px;
  }

  .values-list {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
  }

  .additional-info {
    padding: 20px;
  }

  .additional-info ul {
    margin-left: 0;
  }
  .testimonial {
    padding: 20px;
  }
}

/******************************************************  PRIVACY POLICY  ****************************************************/

.privacy-page-container {
  max-width: 80%;
  padding: 10px 20px;
  margin: auto;
  box-sizing: border-box;
}

.privacy-page-container h1 {
  color: rgb(66, 68, 24);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bolder;
  font-size: 30pt;
}

.privacy-page-container p {
  margin-bottom: 20px;
  text-align: justify;
  font-family: "alth";
  font-size: 14pt;
  color: rgb(66, 68, 24);
}

/* Privacy Policy Section */
.privacy-policy {
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
  padding: 20px 70px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.privacy-policy2 {
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.5) 0%,
    rgba(107, 107, 107, 0.5) 69%
  );
  border-radius: 10px;
  padding: 20px 70px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.privacy-policy3 {
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
  border-radius: 10px;
  padding: 20px 70px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.privacy-policy li {
  text-align: justify;
  font-family: "alth";
  font-weight: bold;
  font-size: 11pt;
  color: rgb(66, 68, 24);
}

.privacy-policy h2,
.privacy-policy2 h2,
.privacy-policy3 h2 {
  color: rgb(66, 68, 24);
  margin-bottom: 20px;
  text-align: center;
  font-family: "alth";
  font-weight: bolder;
  font-size: 22pt;
}

.privacy-policy p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .privacy-page-container {
    max-width: 95%;
    padding: 0;
    margin: auto;
    box-sizing: border-box;
  }

  .privacy-policy,
  .privacy-policy2,
  .privacy-policy3 {
    padding: 20px 40px;
  }
}

/************************************************* CONTACT US ***************************************************************/

.contact-page-container {
  max-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}

.contact-page-container h1 {
  margin-bottom: 20px;
  font-family: "alth";
  color: rgb(66, 68, 24);
  text-align: center;
}

.contact-page-container p {
  font-family: "alth";
  margin-bottom: 20px;
  text-align: justify;
}

.content {
  display: flex;
  justify-content: space-around;
}

.contact-info {
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.5) 0%,
    rgba(107, 107, 107, 0.5) 69%
  );
  border-radius: 100px;
  padding: 20px;
  margin: 0 30px 30px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 10px 10px 10px grey;
  animation: pulseAnimation 2.5s ease infinite alternate;
  transform-origin: center;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

.contact-info h2 {
  margin-bottom: 20px;
  font-family: "alth";
  color: rgb(66, 68, 24);
  text-align: center;
}

.contact-info p {
  font-family: "alth";
  margin-bottom: 20px;
  text-align: center;
}

.contactusform {
  max-width: 60%;
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
  margin-bottom: 30px;
}

/********* Contact Form ***********/
.contact-form {
  margin: 0 auto;
  max-width: 1000px;
  font-family: "alth";
  border-radius: 10px;
  padding: 20px;
  padding-right: 45px;
  /*margin-bottom: 30px;*/
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: rgb(66, 68, 24);
  margin-bottom: 20px;
  text-align: center;
}

.phone-no {
  width: 102.5%;
  display: flex;
  justify-content: space-between;
}

.phone-no-career {
  width: 102%;
  display: flex;
  justify-content: space-between;
}

.phone-no-staffing {
  width: 102%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .phone-no {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .phone-no-career {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .phone-no-staffing {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.contact-form select {
  padding: 10px;
  margin: 0 0 20px 0;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.contact-form input[type="tel"] {
  width: 70%;
  padding: 10px;
  margin: 0 0 20px 0;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .contact-form select,
  .contact-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 0 0 20px 0;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 5px;
    transition: border-color 0.3s ease;
  }
}

.contact-form input[type="text"],
.contact-form textarea,
.contact-form input[type="email"],
.contact-form input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.contact-form input[type="file"]:focus {
  border-color: rgb(0, 123, 255);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[type="submit"] {
  display: block;
  background-color: #313234;
  color: rgb(255, 255, 255);
  border: none;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form input[type="checkbox"] {
  margin-bottom: 10px;
}

.contact-form input[type="submit"]:hover {
  background-color: rgb(0, 100, 95);
}

.attachment-container {
  display: flex;
  align-items: center;
}

.attachment-container label {
  margin-right: 10px;
}

#attachment-info {
  margin-bottom: 15px;
}

.remove-attachment {
  font-family: "alth";
  margin-left: 10px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  background-color: rgb(178, 33, 33);
  border-radius: 5px;
  padding: 5px;
  font-size: 10pt;
}

@media screen and (max-width: 768px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .contact-info {
    margin: 0 0 30px 0;
  }

  .contactusform {
    max-width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure the overlay is above other content */
}

.loading-spinner {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #c25612; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite; /* Spin animation */
}

.loading-text {
  color: #fff; /* White text color */
  font-size: 18px;
  margin-left: 10px; /* Add spacing between text and spinner */
}

/****************************************************** Services *************************************/

.service-container {
  max-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "alth";
  padding: 20px 0;
  text-align: center;
}

.hero h1 {
  color: rgb(66, 68, 24);
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  color: rgb(66, 68, 24);
  font-size: 18px;
}

.service-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-text {
  width: 70%;
}

.service-section:nth-of-type(2),
.service-section:nth-of-type(5) {
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
}

.service-section:nth-of-type(3),
.service-section:nth-of-type(6) {
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.5) 0%,
    rgba(107, 107, 107, 0.5) 69%
  );
}

.service-section:nth-of-type(4),
.service-section:nth-of-type(7) {
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
}

.service-section img {
  max-width: 350px;
  margin-right: 20px;
}

.service-section h2 {
  font-family: "alth";
  font-size: 28px;
  margin-bottom: 20px;
  color: rgb(66, 68, 24);
}

.service-section p {
  font-family: "alth";
  font-size: 16px;
  line-height: 1.6;
  color: rgb(66, 68, 24);
}

@media screen and (max-width: 600px) {
  .service-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .service-section img {
    max-width: 300px;
    margin-right: 0;
    padding: 5px 20px;
  }

  .section-text {
    padding: 20px;
    width: auto;
    height: 70%;
  }
}

/**************************************************** Career Page *****************************************/

.career-container {
  max-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}

#job-openings {
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

#why-join-us {
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

#how-to-apply {
  background: linear-gradient(
    330deg,
    rgba(52, 165, 213, 0.7) 0%,
    rgba(107, 107, 107, 0.7) 69%
  );
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

#job-openings h3,
#job-openings p,
#why-join-us p,
#how-to-apply p {
  color: rgb(56, 56, 52);
  font-family: "alth";
}

#why-join-us ul {
  margin-top: 10px;
  padding-left: 20px;
}

#why-join-us li {
  font-family: "alth";
  font-size: 12pt;
  color: rgb(66, 68, 24);
  margin-bottom: 5px;
}

#job-openings h2,
#why-join-us h2,
#how-to-apply h2 {
  text-align: center;
  color: rgb(56, 56, 52);
  font-family: "alth";
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.job {
  opacity: 0;
  display: none;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 10px;
}

.job a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: rgb(255, 255, 255);
  font-family: "alth";
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.job a:hover {
  background-color: #555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeIn {
  display: block;
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeOut;
}

.controls {
  margin-top: 20px;
  text-align: center;
}

button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
}

button:hover {
  background-color: #555;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.blink {
  animation: blink 2s infinite; /* Adjust the duration of the blinking effect (in seconds) */
}

/************************************************ Staffing Page ************************************************************/
.staffing-container {
  max-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}

/* Added CSS for styling staffing cards */
.staffing-cards {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Start from the left */
  overflow-x: hidden; /* Hide overflow */
  height: 500px; /* Auto height for the container */
  background: linear-gradient(
    222deg,
    rgba(85, 179, 233, 0.6) 0%,
    rgba(225, 187, 74, 0.6) 69%
  );
  border-radius: 10px;
}

.staffing-card {
  flex: 0 0 calc(30% - 20px); /* Adjust the width as needed */
  background-color: rgba(255, 255, 255, 0.922);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-right: 50px; /* Space between cards */
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; /* Updated transition timing */
}

.staffing-card:first-child {
  margin-left: -5px;
}

.staffing-card:last-child {
  margin-right: 0; /* Remove margin from last card */
}

.staffing-card.half-bigger {
  transform: scale(1.5); /* Make the card 50% bigger */
}

#why-choose-us,
#our-expertise,
#our-process,
#types-of-staffing,
#contact-us {
  margin-bottom: 20px;
  padding: 10px 70px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#our-process,
#contact-us {
  background: linear-gradient(
    54deg,
    rgba(23, 186, 197, 0.3) 34%,
    rgba(19, 176, 32, 0.3) 69%
  );
}

#why-choose-us {
  background: linear-gradient(
    222deg,
    rgba(52, 165, 213, 0.7) 0%,
    rgba(107, 107, 107, 0.7) 69%
  );
}

.staffing-card h3 {
  font-family: "alth";
  font-size: 12pt;
  text-align: center;
  margin-top: 0;
}

.staffing-container h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

.staffing-container p {
  font-family: "alth";
  font-size: 14pt;
  text-align: start;
  line-height: 1.6;
  margin-bottom: 20px;
}

.staffing-container h2 {
  font-family: "alth";
  text-align: center;
  font-size: 20pt;
  margin-bottom: 20px;
  color: #333;
}

.staffing-container ul,
.staffing-container ol {
  text-align: start;
  margin-bottom: 20px;
}

.staffing-container ul li,
.staffing-container ol li {
  font-family: "alth";
  font-size: 12.5pt;
  list-style: circle;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
  .staffing-cards {
    height: 500px; /* Auto height for the container */
  }

  .staffing-card {
    flex: 0 0 calc(50% + 20px); /* Adjust the width as needed */
    border-radius: 8px;
    padding: 20px;
    padding-left: 80px;
    margin-right: 80px; /* Space between cards */
  }

  .staffing-card:first-child {
    margin-left: 0;
  }

  .staffing-card:last-child {
    margin-right: 0; /* Remove margin from last card */
  }

  .staffing-card.half-bigger {
    transform: scale(1.5); /* Make the card 50% bigger */
  }

  #why-choose-us,
  #our-expertise,
  #our-process,
  #types-of-staffing,
  #contact-us {
    padding: 10px 20px;
  }
}
