* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* landing page */
img.background {
  width: 100%;
  height: 650px;
}

.landingpage {
  position: relative;
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  /* top: 0; */
  width: 100%;
}

.logo {
  color: rgb(135, 206, 235);
  /* font-size: 24px; */
  /* padding-left: 10px; */
  width: 100px;
  height: 100px;
  /* padding: 0; */
}

.signin-button,
.getstarted-button {
  color: black;
  background-color: rgb(135, 206, 235);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}
.signin-button {
  margin-right: 20px;
  position: relative; /* Ensure button's z-index works correctly */
  z-index: 2;
}

.signin-button:hover,
.getstarted-button:hover {
  text-decoration: underline;
}

.text {
  position: absolute;
  bottom: 120px; /* Adjust bottom position as needed*/
  left: 50%;
  top: 30%;
  /* bottom: 50%; */
  transform: translateX(-50%);
  color: white;
  font-size: 20px;
  text-align: center;
  width: 300px; /* Ensure text doesn't go too wide */
}
.getstarted-button {
  position: absolute;
  bottom: 40px; /* Adjust bottom position to lift the button higher */
  left: 50%;
  transform: translateX(-50%);
  color: black;
  background-color: rgb(135, 206, 235);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
}
.landingpage p span {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 0; /* Ensure overlay stays behind content */
}
.background {
  width: 100%;
  height: 650px;
  object-fit: cover; /* Ensure background image covers the entire container */
}
/* -------------about us---------- */
.about {
  text-align: center; /* Center-align text */
  margin: 80px auto; /* Center the section horizontally */
  max-width: 800px; /* Limit width to prevent text from spreading too wide */
  padding: 0 20px; /* Add padding on the sides */
  box-sizing: border-box;
}

.about h4 {
  font-size: 40px;
  color: rgb(135, 206, 235); /* Set heading color to rgb(135, 206, 235) */
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  margin: 20px auto; /* Center the image */
}

.about .about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block; /* Ensure image behaves as a block element */
  margin: 0 auto; /* Center the image horizontally */
}

.about p {
  text-align: center; /* Justify text for better readability */
  margin-top: 20px;
  line-height: 1.6; /* Improve line spacing for readability */
}

/* -----------features section---------------- */
.features {
  background-color: rgb(135, 206, 235);
  padding: 50px 0;
  text-align: center;
}

.features h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
}

.feature-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  margin: 10px;
  flex: 1 1 200px; /* Flex properties for responsiveness */
  display: flex;
  box-shadow: 0 0 10px rgb(39, 38, 38);
  flex-direction: column;
  align-items: center;
}

.feature i {
  margin-bottom: 10px;
}

.feature p {
  font-size: 1.2rem;
  font-weight: bold;
}
.feature .features-content {
  font-weight: normal;
  font-size: 18px;
}
/* --------how it works---------- */
.how-it-works {
  padding: 50px 20px;
  text-align: center;
}

.how-it-works h4 {
  color: rgb(135, 206, 235);
  margin-bottom: 40px;
  font-size: 30px;
}

.steps-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}

.step {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(10, 11, 14, 0.1);
}

.step i {
  font-size: 30px;
  color: rgb(135, 206, 235);
  margin-bottom: 10px;
}
/* ----------------footer section------ */
footer {
  background-color: rgb(135, 206, 235);
  padding: 10px;
  text-align: center;
  clear: both;
}
