@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  background-color: white;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 2000;
  padding-bottom: 30px;
}

.The-header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.logo img {
  width: 150px;
  padding: 0px 5px;
}

.nav_links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: larger;
  font-weight: 600;
  gap: 25px;
}

.nav_links li {
  list-style: none;
  position: relative;
}

.nav_links li a {
  text-decoration: none;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-family: "Lora", serif;
  font-weight: bolder;
}

/* i {
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  cursor: pointer;
} */

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.icons i {
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: x-large;
  padding-right: 50px;
}

.hamburger {
  display: none;
}

.lines {
  width: 25px;
  background: linear-gradient(to right, #0a7a55, #075544);
  height: 3px;
  margin: 5px;
}

.The-header nav ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  bottom: -8px;
}

.The-header nav ul li a:hover::after {
  width: 100%;
  background: linear-gradient(to right, #0a7a55, #075544);
  font-weight: 700;
}

.page {
  position: relative;
}

.drop_menu {
  display: none;
}

.drop_menu1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -45px;
  padding: 10px 6px;
  color: #075544;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  .nav_links {
    font-size: large;
  }
}

@media screen and (max-width: 1080px) {
  .nav_links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .icons i {
    padding-right: 5px;
  }
}

/* ---------------------------------------------------------------------------- */
/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #f0f8ff; /* light blue background for sidebar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
  margin-top: 10vh;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 15px;
  position: relative;
}

.sidebar ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #075544; /* dark blue for links */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #0a7f61; /* light blue on hover */
}

.sidebar ul li div span {
  color: #075544; /* submenu arrow */
  text-decoration: none;
}

.flexdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Submenus */
.sidebar ul li .submenu {
  list-style: none;
  padding-left: 15px;
  overflow: hidden;
  display: none;
}

.sidebar ul li .submenu2 {
  padding-left: 15px;
  display: none;
}

.submenu1 {
  padding-left: 15px;
  display: block;
}

/* Close button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: #075544; /* dark blue close button */
  transition: color 0.3s ease;
}

.sidebar .close-btn:hover {
  color: #0a7f61; /* light blue on hover */
}

.hide {
  display: none;
}

/* ------------------------------------------------ */

main {
  width: 100vw;
  background: #0a7a55;
  background: radial-gradient(circle, #0a7a55 0%, #075544 100%);
  height: max-content;
  padding: 30px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  overflow-x: hidden;
}

main .container {
  width: 100%;
  padding: 30px 20px;
  overflow: hidden;
}

main .container h3 {
  background: linear-gradient(to right, #ffffff, #e3f4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 20px;
  font-family: "lora", serif;
  font-size: xx-large;
}

main .container h1 {
  background: linear-gradient(to right, #ffffff, #d6ecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 20px;
  font-family: "roboto slab", serif;
  font-size: xx-large;
}

main .container p {
  color: #f0f8ff;
  padding: 10px 20px;
  font-family: "josefin slab", serif;
  font-size: x-large;
}

main .container .image-block1 {
  width: 100%;
  display: flex;
  gap: 10px;
}
main .container .image-block1 img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

main .container .image-block1 video {
  width: 100%;
  height: 240px;
  display: flex;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 10px;
  /* padding-left: 20px; */
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 18px 28px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;

  background: linear-gradient(to right, #ffffff, #e3f4ff);
  color: #075544;

  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}

.play-btn:hover {
  background: linear-gradient(to right, #ffffff, #d6ecff);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.pause-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  background: linear-gradient(to right, #ffffff, #e3f4ff);
  color: #075544;

  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
  display: none; /* hidden until video plays */
}

.pause-btn:hover {
  background: linear-gradient(to right, #ffffff, #d6ecff);
  transform: scale(1.1);
}

.pause-btn:active {
  transform: scale(0.95);
}

.div-button {
  display: flex;
  gap: 30px;
  padding: 10px 20px;
}

.btn-1 {
  padding: 12px 28px;
  background: #ffffff;
  color: #075544;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-1:hover {
  background: #eaf6ff;
  color: #075544;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-1:active {
  transform: scale(0.96);
}

@media screen and (max-width: 1388px) {
  main .container h3,
  h1 {
    font-size: x-large;
  }
  main .container p {
    font-size: large;
  }
}

.div-icons {
  display: flex;
  gap: 20px;
  padding: 10px 5%;
}

.div-icons i {
  font-size: xx-large;
  color: #ffffff;
}

@media screen and (max-width: 1231px) {
  main {
    flex-direction: column;
  }
  .container .image-block1 img {
    width: 100%;
    object-fit: cover;
  }
  main .container {
    padding: 10px;
  }
}

@media screen and (max-width: 770px) {
  .container .image-block1 {
    flex-direction: column;
  }
}

@media screen and (max-width: 550px) {
  main .container h3 {
    font-size: larger;
  }
  main {
    padding: 15px;
  }
  main .container h1 {
    font-size: larger;
  }
  main .container p {
    font-size: medium;
  }
  .btn-1 {
    font-size: 12px;
    padding: 12px 10px;
  }
}

.headings {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px 40px;
}

.headings h3 {
  font-family: "Lora", serif;
  font-size: 28px;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.headings h1 {
  font-family: "Roboto Slab", serif;
  font-size: xx-large;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.headings p {
  font-family: "Josefin Slab", serif;
  font-size: larger;
  color: #333333; /* Dark text visible on white */
  line-height: 1.6;
  font-weight: 600;
}

@media screen and (max-width: 700px) {
  .headings h1 {
    font-size: x-large;
  }
  .headings h3 {
    font-size: 24px;
  }
  .headings p {
    font-size: medium;
  }
}

@media screen and (max-width: 400px) {
  .headings h1 {
    font-size: 22px;
  }
  .headings h3 {
    font-size: 20px;
  }
  .headings p {
    font-size: small;
  }
}

.cards-container {
  display: grid;
  grid-template-columns: auto auto;
  padding: 50px 20px;
  background: #ffffff; /* White background */
  gap: 20px;
}

.card {
  flex: 0 0 45%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;

  padding: 30px 22px;
  text-align: left;

  box-shadow: 0 8px 25px rgba(0, 136, 255, 0.15);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 140, 255, 0.45);
  box-shadow: 0 14px 35px rgba(0, 140, 255, 0.28);
  background: rgba(255, 255, 255, 0.25);
}

.card h2 {
  font-family: "Roboto Slab", serif;
  font-size: 28px;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.card p {
  font-family: "Josefin Slab", serif;
  font-size: 16px;
  color: #333333; /* readable on white/light background */
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(to right, #0a7a55, #075544);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 98, 206, 0.4);
}

@media screen and (max-width: 990px) {
  .cards-container {
    grid-template-columns: auto;
    padding: 30px 50px;
  }
  .card h2 {
    font-size: 24px;
  }
  .card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .cards-container {
    grid-template-columns: auto;
    padding: 30px 20px;
  }
  .card h2 {
    font-size: 20px;
  }
  .read-more {
    font-size: small;
  }
}

.Table1 {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 10px 5%;
}

.Table1 .c1 {
  width: 60%;
  display: flex;
  gap: 10px;
}

.Table1 .c1 img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 40vh;
}

.Table1 .c2 {
  width: 40%;
  display: flex;
  gap: 10px;
}

.Table1 .c2 img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 81vh;
}

@media screen and (max-width: 1275px) {
  .Table1 .c1,
  .Table1 {
    flex-direction: column;
  }
  .Table1 .c1,
  img {
    width: 100%;
    object-position: center;
  }
  .Table1 .c2 img {
    display: none;
  }
}

.recruitment {
  display: flex;
  overflow: hidden;
  padding: 10px 5%;
}

.emoji {
  text-align: center;
  background: linear-gradient(45deg, #0a7a55, #075544, #00bfa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* subtle glow */
  margin: 10px;
  transition: transform 0.3s, filter 0.3s;
  cursor: default;
}

.emoji:hover {
  transform: scale(1.3) rotate(10deg); /* fun hover effect */
  filter: drop-shadow(0 0 10px #00bfa5);
}

.recruitment-contents {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
}

.recruitment-contents .container {
  text-align: center;
  width: 100%;
}

.recruitment-contents .container h2 {
  font-size: xx-large;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-family: "lora", serif;
}

.recruitment-contents .container p {
  font-family: "josefin slab", serif;
  color: #333333;
  line-height: 1.6;
  font-size: larger;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 16px;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: 0.3s;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 5px;
}

/* Gradient Border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Icons */
.card-icon {
  font-size: 42px;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.service-card h3 {
  text-align: center;
  font-size: 20px;
  color: #075544;
  margin-bottom: 8px;
}

.service-card h2 {
  font-size: 26px;
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

@media screen and (max-width: 1338px) {
  .recruitment {
    flex-direction: column;
  }
  .recruitment-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  .service-card {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 700px) {
  .recruitment .container h2 {
    font-size: x-large;
    text-align: center;
  }
}

/* ------------------ FOOTER PAGE ------------------------ */

footer {
  overflow: hidden;
}

.footer-parent {
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
  position: relative;
}

.footer-map {
  padding: 20px 40px 10px 40px;
}

.footer-map iframe {
  position: relative;
  border-radius: 10px;
}

#vanta-fr {
  min-height: 100vh;
  position: absolute;
  inset: 0;
}

.set1,
.set2,
.set3,
.set4 {
  flex: 300px;
  padding: 0px 20px 0px 20px;
  text-align: center;
}

.set1 {
  padding-top: 30px;
}

.set1 img {
  width: 240px;
  object-fit: cover;
  padding: 0px;
}

.footer-para {
  font-size: larger;
}

.set1 a {
  text-decoration: none;
}

.set1 a i {
  font-size: x-large;
  color: #075544;
  padding: 20px;
}

.set1 a i:hover {
  color: teal;
}

.set2 {
  padding-top: 60px;
}

.footer-li {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.footer-li a {
  display: inline-block;
  font-size: larger;
  padding: 10px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.footer-li > a:hover {
  color: teal;
}

.footer-header {
  background: linear-gradient(to right, #0a7a55, #075544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-family: "Lora", serif;
  font-weight: bolder;
}

.set3 {
  padding-top: 60px;
}

.set3 .footer-para {
  padding: 10px;
  font-weight: 400;
}

.set4 {
  padding-top: 60px;
}

.set4 > .footer-para {
  padding: 10px;
  font-weight: 400;
  line-height: 40px;
}

@media screen and (max-width: 769px) {
  .footer-parent {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}

@media screen and (max-width: 430px) {
  .footer-para {
    font-size: medium;
  }

  .footer-li a {
    font-size: medium;
  }

  .footer-header {
    font-size: larger;
  }
}
