@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 {
  /* padding: 30px 50px; */
  position: sticky;
  top: 0;
  z-index: 2000;
}

.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;
  /* border-radius: 20px; */
}

.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;
  color: #554b9a;
  font-family: "Lora", serif;
  font-weight: bolder;
}

i {
  cursor: pointer;
}

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

.icons i {
  color: #554b9a;
  font-size: larger;
  padding-right: 50px;
}

.hamburger {
  display: none;
}

.lines {
  width: 25px;
  background-color: #554b9a;
  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-color: #a392f5;
}

.page {
  position: relative;
}

.drop_menu {
  display: none;
}

.drop_menu1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -45px;
  padding: 10px 6px;
  color: #554b9a;
  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: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: 1s;
  padding-top: 20px;
  margin-top: 12vh;
}

.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: #554b9a;
  font-weight: 600;
  text-decoration: none;
}
.sidebar ul li div span {
  color: black;
  text-decoration: none;
}

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

.sidebar ul li a:hover {
  color: #f1f1f1;
}

.sidebar ul li .submenu {
  list-style: none;
  padding-left: 15px;
  /* max-height: 0; */
  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: black;
}

.hide {
  display: none;
}

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

main {
  width: 100vw;
  height: 80vh;
  background: linear-gradient(45deg, #0a0313, #2c1555);
  position: relative;
  z-index: -1;
}

main img {
  width: 100%;
  height: 80vh;
  object-fit: contain;
  object-position: right;
}

.main-content {
  position: absolute;
  inset: 0;
  top: 20%;
  padding: 60px;
  max-width: 65%;
  backdrop-filter: blur(2px);
}

.main-content h2 {
  font-family: "Roboto Slab", serif;
  letter-spacing: 2px;
  font-size: 50px;
  padding: 10px;
  background: linear-gradient(to right, #6a9bff, #ff8bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.main-content > p {
  font-family: "Roboto Slab", serif;
  color: white;
  padding: 10px;
  font-size: 32px;
  letter-spacing: 2px;
}

@media screen and (max-width: 1450px) {
  .main-content {
    max-width: 100%;
    backdrop-filter: blur(3px);
  }
  main img {
    filter: brightness(50%);
  }
  .main-content h2 {
    font-size: 48px;
  }
  .main-content p {
    font-size: 30px;
  }
}


@media screen and (max-width:1200px) {
  .main-content {
    top: 30%;
    padding: 20px;
  }
}

@media screen and (max-width: 700px) {
  main {
    height: 60vh;
  }
  main img {
    height: 60vh;
  }
  .main-content {
    top: 10%;
    padding: 20px;
  }
  .main-content h2 {
    font-size: 38px;
  }
  .main-content p {
    font-size: 26px;
  }
}

@media screen and (max-width: 520px) {
  .main-content h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .main-content p {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .main-content {
    top: 0%;
  }
}

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

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

.Table1 {
  background-color: #554b9a;
  width: 100vw;
  overflow-x: hidden;
}

.container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding: 10px 5%;
  overflow-x: hidden;
}

.Box {
  padding: 25px;
}

.Box h2 {
  font-size: xx-large;
  font-family: "Lora", serif;
  padding: 10px;
  color: white;
}

.Box p {
  color: white;
  font-size: larger;
  font-family: "Roboto Slab", serif;
}

.Box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 2px solid white;
  padding-right: 80px;
  /* width: 100%; */
}

@media screen and (max-width: 1200px) {
  .container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
  }
}

@media screen and (max-width: 960px) {
  .container {
    display: grid;
    grid-template-columns: auto auto;
  }
  .Box {
    padding-right: 10px;
    border: 2px solid white;
    border-radius: 8px;
  }
}

@media screen and (max-width: 731px) {
  .Box h2 {
    font-size: x-large;
  }

  .Box p {
    font-size: large;
  }
}

@media screen and (max-width: 595px) {
  .Table1 {
    padding: 30px;
  }
  .container {
    padding: 0px;
    display: grid;
    grid-template-columns: auto;
  }
}

.heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.heading h3 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(to right, #62caff, #009dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading p {
  padding: 15px;
  font-size: x-large;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  text-transform: capitalize;
}

@media screen and (max-width: 800px) {
  .heading p {
    font-size: large;
    padding: 5px;
  }
}

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

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

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #a392f5; */
  border-radius: 10px;
  z-index: -1;
}

/* Hover effect for each box */
.swiper-slide {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #a392f5;
}

.swiper-slide:hover {
  border-bottom: 8px solid #2c1555;
}

.append-buttons {
  text-align: center;
  margin-top: 20px;
}
.append-buttons a {
  display: inline-block;
  border: 1px solid #007aff;
  color: #007aff;
  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;
}

.swiper-content i {
  font-size: xx-large;
  background: linear-gradient(to right, #2c1555, #0a0313);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}

.swiper-content h2 {
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #2c1555, #0a0313);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: x-large;
  padding: 20px;
  z-index: -1;
}

.swiper-slide:hover .swiper-content i,
.swiper-slide:hover .swiper-content h2 {
  filter: drop-shadow(0 0 4px rgba(44, 21, 85, 0.5));
}

.swiper-content p {
  font-family: "Roboto Slab", serif;
  text-align: justify;
  padding: 10px;
  font-size: larger;
}
.swiper-button-next,
.swiper-button-prev {
  color: purple !important; /* deep dark red */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: purple !important;
}

@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;
  }
}

/* Table 2 */


.Table2 .container1 {
  display: flex;
  padding: 10px;
  gap: 10px;
}

.Table2 .container1 .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #a392f5;
  border-radius: 12px;
  cursor: pointer;
  padding: 20px;
}

.Table2 .container1 .box i {
  font-size: xx-large;
  background: linear-gradient(to right, #2c1555, #0a0313);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 15px 0px;
}

.Table2 .container1 .box h2 {
  background: linear-gradient(to right, #2c1555, #0a0313);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  padding: 5px;
}

.Table2 .container1 .box p {
  font-family: "Roboto Slab", serif;
  text-align: justify;
  padding: 10px;
  font-size: larger;
}

.Table2 .container1 .box button {
  background-color: #2c1555;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  padding: 4px 6px;
}

/* Hover Effect */
.Table2 .container1 .box button:hover {
  background-color: #4b1f8a; /* lighter purple */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(44, 21, 85, 0.3);
}

.Table2 .container1 .box:hover {
  border-bottom: 8px solid #2c1555;
}

.Table2 .container1 .box:hover i,
h2,
p {
  filter: drop-shadow(0 0 4px rgba(44, 21, 85, 0.5));
}

@media screen and (max-width: 1100px) {
  .Table2 .container1 {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 550px) {
  .Table2 .container1 .box h2 {
    font-size: larger;
  }
  .Table2 .container1 .box i {
    font-size: x-large;
  }
}

@media screen and (max-width: 475px) {
  .Table2 .container1 .box p {
    text-align: start;
  }
  .Table2 .container1 .box h2 {
    padding: 5px 0px;
  }
}
@media screen and (max-width: 380px) {
  .Table2 .container1 .box p {
    font-size: medium;
    letter-spacing: 1px;
    padding: 5px;
  }
  .Table2 .container1 .box h2 {
    padding: 5px 0px;
    font-size: medium;
  }
}
@media screen and (max-width: 550px) {
  .Table2 .container1 .box button p {
    font-size: small;
    padding: 4px 6px;
  }
}

.Table3 {
  width: 100%;
}

.Table3 .container {
  gap: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
}

.Table3 .container .box {
  background-color: #a392f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  width: 100%;
}

.Table3 .container .box .box-img {
  width: 100%;
}

.Table3 .container .box .box-img img {
  width: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.Table3 .container .box:hover .box-img img {
  filter: brightness(100%);
}

.Table3 .container .box .box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Table3 .container .box .box-content h2 {
  color: #2c1555; /* Deep violet */
  font-weight: 700;
  padding: 5px;
  text-align: center;
}

.Table3 .container .box .box-content p {
  font-family: "Roboto Slab", serif;
  padding: 10px;
  font-size: larger;
  color: #2c1555; /* Deep violet */
  font-weight: 700;
}

.heading button {
  background-color: #2c1555;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  padding: 4px 6px;
}

.heading button p {
  font-size: medium;
}

.heading button:hover {
  background-color: #4b1f8a; /* lighter purple */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(44, 21, 85, 0.3);
}

.Table3 .container .box:hover {
  border-bottom: 8px solid #2c1555;
}

.Table3 .container .box:hover i,
h2,
p {
  filter: drop-shadow(0 0 4px rgba(44, 21, 85, 0.5));
}

@media screen and (max-width: 1140px) {
  .Table3 .container {
    flex-wrap: wrap;
    gap: 50px;
  }
}

/* ------------------ 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: 220px;
  height: 70px;
  object-fit: cover;
  padding: 0px;
}

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

.set1 a {
  text-decoration: none;
}

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

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

.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: purple;
}

.footer-header {
  color: #554b9a;
}

.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;
  }
}

button a {
  text-decoration: none;
}

button a p {
  color: white;
}