@import url("https://fonts.googleapis.com/css?family=Poppins");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("./images/background.png") no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
} */

header {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px; */
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
  /* width: 100%; */
  background-color: rgb(0, 0, 0, 0.8);
  z-index: 9999;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.logo {
  width: 200px;
  /* margin-left: 15px;
  margin-top: 15px; */
  transition: height 0.5s;
}

.logo:hover {
  height: 45px;
}

.logo-home {
  height: 100px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: height 0.5s;
}

.logo-home:hover {
  height: 110px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  /* margin-top: 10px; */
}

.navigation a {
  position: relative;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.navigation a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

#book-tab {
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: transparent;
  transition: background-color 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
  margin-left: 20px;
  text-decoration: none;
}

#book-tab::after {
  content: none;
}

#book-tab:hover {
  background-color: #c7d8f0;
  color: #425982;
  border: 2px solid #425982;
}
/* 
main {
  padding: 20px;
  margin-top: 80px;
} */

.about-section {
  display: block; /* Ensures the divs are stacked vertically */
  margin-bottom: 40px;
  color: #fff;
  text-align: left; /* Center-aligns the 'Meet the Team' heading */
}

.text-content {
  /*flex: 1;  Let text-content take as much space as possible */
  /* padding: 20px; */
  text-align: left;
  font-size: 1.5em;
}

.image-content {
  max-width: 450px; /* Control the image size */
  padding: 20px;
}

.image-content img {
  width: 100%; /* Image scales to the width of the container */
  height: auto; /* Keep the image aspect ratio */
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

h2 {
  font-size: 2em; /* Increases the size of 'Meet the Team' */
  margin-bottom: 30px; /* Adds spacing below the heading */
}

p {
  font-family: "Rubik", sans-serif;
  font-size: 1em;
  line-height: 1.6;
}

#book-tab2 {
  /* padding: 10px 20px; */
  color: #c7d8f0;
  border: 2px solid #c7d8f0;
  border-radius: 5px;
  background-color: #425982;
  transition: background-color 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
  /* margin-left: 20px; */
  text-decoration: none;
}

#book-tab2::after {
  content: none;
}

#book-tab2:hover {
  background-color: #c7d8f0;
  color: #425982;
  border: 2px solid #425982;
}

#about-tab2 {
  /* padding: 10px 20px; */
  color: #c7d8f0;
  border: 2px solid #c7d8f0;
  border-radius: 5px;
  background-color: #425982;
  transition: background-color 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
  /* margin-left: 20px; */
  text-decoration: none;
}

.button-container {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center; /* Center buttons horizontally */
  gap: 15px; /* Space between buttons */
}

#about-tab2::after {
  content: none;
}

#about-tab2:hover {
  background-color: #c7d8f0;
  color: #425982;
  border: 2px solid #425982;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto; /* Full viewport height */
  min-height: 64vh;
  gap: 20px;
}

.logo-home {
  margin-bottom: 50px; /* Adjust the space between the logo and the tabs */
}

/* #book-tab2 {
  margin-top: 10px; 
} */

input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

#passion {
  margin-bottom: 30px;
  font-family: "Rubik", sans-serif;
}

.team-member {
  display: flex; /* Arrange text-content and image-content side by side */
  align-items: center; /* Align text and image vertically in the center */
  margin-bottom: 100px; /* Space between team members */
  background-color: #425982;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.subheading-content {
  flex: 1;
  padding: 20px;
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  margin-top: 50px;
  color: #c7d8f0;
}

.tutors {
  /* flex: 1;Let text-content take as much space as possible */
  text-align: left;
  font-size: 2em;
  margin-bottom: 45px;
  margin-top: 30px;
  font-family: "Rubik", sans-serif;
}

#about-text {
  text-align: left;
  font-size: 1.7em;
  margin-top: 0px;
  margin-bottom: 90px;
  background: transparent;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  border: 1px solid #ddd;
}

#sentence {
  font-family: "Rubik", sans-serif;
  margin-bottom: 50px;
  margin-top: 50px;
}

#sentence2 {
  font-family: "Rubik", sans-serif;
  margin-bottom: 25px;
  margin-top: 25px;
}

.about-section #submit {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  margin-top: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #8f9779;
  color: #fff;
  font-size: 1em;
  font-family: "Rubik", sans-serif;
}

.about-section #submit:hover {
  background-color: #757c61;
  transition: background-color 0.5s;
}

/* .container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 75%;
} */

.main-headline {
  font-size: 40px;
  margin-bottom: 40px;
  color: #c7d8f0;
}

.content {
  display: flex;
  flex-direction: column; /* Stack text-boxes vertically */
  align-items: flex-start; /* Align text to the left */
  justify-content: center; /* Center vertically if needed */
  gap: 20px; /* Add space between the text boxes */
  width: 100%; /* Ensure it spans the container width */
  margin: 0 auto; /* Center horizontally */
}

.text-box {
  width: 100%; /* Allow text boxes to take up the full width */
  text-align: left; /* Ensure text is left-aligned */
}

.sub-headline {
  font-size: 45px;
  margin-bottom: 10px;
  color: #c7d8f0;
}

.text {
  font-size: 25px;
  line-height: 2;
  text-align: justify;
  font-family: "Rubik", sans-serif;
}
@media (max-width: 640px) {
  .text {
    font-size: 18px;
    line-height: 1.6;
  }
  /* .container {
    max-width: 85% !important;
  } */
}

.text-box ul,
.text-box ul li,
.text-box ul li strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.1em;
  line-height: 1.5;
  /* margin: 10px 0;  Spacing between list items */
  list-style: disc inside; /* Optional: List style adjustments */
  font-weight: normal; /* Optional: Use normal weight unless bold is intentional */
}
text-box p,
text p {
  margin-bottom: 0 !important;
}

.text-box ul li {
  font-weight: 200;
}

p {
  margin-bottom: 20px;
}
.about-wrap p {
  font-size: 18px;
  line-height: 1.6;
}

.logo {
  /* color: black; */
  display: inline-lock;
}
.header {
  /* background-color: #fff; */
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  padding: 15px 0;
}
.header .container {
  max-width: 1536px;
  margin: 0 auto;
}

.header ul {
  margin: 0;
  padding: 0 20px 0 0;
  list-style: none;
  overflow: hidden;
  /* background-color: #fff; */
}

.header li a {
  display: block;
  /* padding: 20px 20px; */
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #8f9779;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 768px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 12px 20px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .header li a {
    padding: 20px;
  }
  #book-tab {
    margin-left: 0;
    border: none;
  }
}
