@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;
  overflow-x: hidden;
  padding: 30px 5%;
  gap: 30px;
}

main .container1 {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 60px 10px;
}
main .container2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.sub-container {
  width: 100%;
  gap: 10px;
}

.sub-container img {
  width: 100%;
  height: max-content;
  object-fit: cover;
  margin-top: 5px;
  margin-bottom: 5px;
}

.sub-container h3 {
  width: 100%;
  font-size: x-large;
  font-family: "Josefin Slab", serif;
  padding: 20px 50px;
  background: radial-gradient(circle, #0a7a55 0%, #075544 100%);
  color: #ffffff; /* white text for visibility */
  border-radius: 8px; /* makes it look like a button */
  display: inline-block; /* ensures proper button size */
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* soft glow */
  text-align: center;
  margin-top: 5px;
}

.container2 h2 {
  font-family: "Roboto Slab", serif;
  font-size: x-large;
  color: #ffffff;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); /* makes text pop */
  padding-bottom: 10px;
  padding-top: 10px;
}

.container2 h3 {
  font-family: "Josefin Slab", serif;
  font-size: 24px;
  color: #f5faff;
  font-weight: 600;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.container2 p {
  font-family: "lora", serif;
  font-size: larger;
  color: #e8f3ff;
  line-height: 1.6;
  padding-bottom: 5px;
}

.sub-main h3 {
  font-family: "Josefin Slab", serif;
  font-size: x-large;
  color: #f5faff;
  font-weight: 600;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  padding-bottom: 5px;
}

.sub-main p {
  font-family: "lora", serif;
  font-size: larger;
  color: #e8f3ff;
  line-height: 1.6;
  padding-bottom: 10px;
}

.abt {
  width: fit-content;
  font-size: 22px;
  font-family: "Josefin Slab", serif;

  padding: 10px 22px;
  border-radius: 10px;

   background: radial-gradient(circle, #0a7a55 0%, #075544 100%);


  color: white;

  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;

  transition: 0.3s ease;
}

/* h3:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 12px #075544;
} */

.sub-main i {
  font-size: 38px;

  background: linear-gradient(to right,#0a7a55 0%, #075544 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* visibility glow */
  filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.8));
}

@media screen and (max-width: 1260px) {
  main {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  main .container1 {
    flex-direction: column;
  }
  main .container1 .sub-container:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.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 0%, #075544 100%);
  -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 0%, #075544 100%);
  -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;
  }
}

.Structure {
    padding: 10px 5%;
    overflow-x: hidden;
}

.team {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.mates {
    width: 100%;
    padding-bottom: 80px;
}

.mates img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.names {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.names 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:600px) {
    .mates {
        width: 100%;
    }
    .mates img {
        width: 100%;
    }
    .team {
        flex-direction: column;
    }
}

/* -------------------- Swiper---------------------- */

.swiper {
  width: 100%;
  margin: 20px;
  z-index: -1;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  z-index: -1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #0a7a55; /* light blue border */
}

.swiper-slide:hover {
  border-bottom: 8px solid #075544 ; /* darker blue bottom */
}

.swiper-content img {
    object-fit: cover;
    width: 250px;
    height: 100%;
}

.append-buttons {
  text-align: center;
  margin-top: 20px;
}
.append-buttons a {
  display: inline-block;
  border: 1px solid #0a7a55;
  color: #075544 ;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 10px;
  font-size: 13px;
}

.swiper-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: -1;
}

/* ICON — Blue Gradient */
.swiper-content i {
  font-size: xx-large;
  background: linear-gradient(to right,#0a7a55 0%, #075544 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}

/* Heading — Blue Gradient */
.swiper-content h2 {
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right,#0a7a55 0%, #075544 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: x-large;
  font-family: "Roboto Slab", serif;
  padding: 20px;
  z-index: -1;
}

.swiper-content h4 {
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right,#0a7a55 0%, #075544 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: large;
  font-family: "Josefin Slab", serif;
  z-index: -1;
}

.swiper-slide:hover .swiper-content i,
.swiper-slide:hover .swiper-content h2 {
  filter: drop-shadow(0 0 4px #0a7a55);
}

.swiper-content p {
  font-family: "Roboto Slab", serif;
  text-align: justify;
  padding: 10px;
  font-size: larger;
  color: #075544 ; /* visible dark blue text */
}

.swiper-button-next,
.swiper-button-prev {
  color: #075544  !important; /* dark blue */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #0a7a55 !important; /* lighter blue */
}

/* Responsive */
@media screen and (max-width: 550px) {
  .swiper-content h2 {
    font-size: larger;
  }
  .swiper-content i {
    font-size: x-large;
  }
}

@media screen and (max-width: 475px) {
  .swiper-content p {
    text-align: start;
  }
}

@media screen and (max-width: 380px) {
  .swiper-content p {
    font-size: medium;
    letter-spacing: 1px;
  }
  .swiper-content h2 {
    padding: 10px;
    font-size: large;
  }
}

/* Footer */

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

/* ------------------ 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;
  }
}
