/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  position: relative;
  text-align: center;
  color: white;
}

.cover {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  background: rgb(0, 0, 0);
  width: 100%;
  /* position: absolute; */
  top: 0;
}

nav ul li {
  margin: 30px 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin-top: 0px;
}

.cover h1 {
  font-size: 50px;
  margin: 20px 0;
}

.cover p {
  font-size: 20px;
}

.btn {
  background: #ff6347;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px;
}

/* Reset default margin and padding */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Section styling */
#features {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align content horizontally */
  padding: 40px; /* Add padding for spacing */
  background-color: #f5f5f5; /* Light background color */
}

/* Feature container */
.feature {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between; /* Space between image and text */
  align-items: center; /* Center align content vertically */
  height: 100vh;
  width: 100%; /* Limit width to avoid full-width */
  max-width: 10000px; /* Maximum width for responsiveness */
  margin-bottom: 40px; /* Vertical spacing between features */
  /* White background for each feature */
  padding: 20px; /* Padding for inner content */
  border-radius: 8px; /* Rounded corners for a softer look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Image styling */
.feature img {
  max-width: 70%; /* Limit image width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Match feature container border radius */
}

/* Feature text container */
.feature-text {
  flex: 1;
  padding-left: 20px;
}

/* Feature title styling */
.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

/* Feature description styling */
.feature-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

#about {
  padding: 50px;
  background-color: #f9f9f9;
}

#about p {
  font-size: 18px;
  line-height: 1.6;
}

.team {
  margin-top: 20px;
}

.team h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.team ul {
  list-style: none;
  padding: 0;
}

.team ul li {
  margin: 10px 0;
}

.team a {
  text-decoration: none;
  color: #ff6347;
  margin-right: 10px;
}

/* styles.css continued */
#video {
  padding: 50px;
  text-align: center;
  background-color: #fff;
}

#video video {
  width: 80%;
  height: auto;
}

/* styles.css continued */
footer {
  padding: 20px;
  text-align: center;
  background-color: #333;
  color: white;
}

.team-member {
  margin-bottom: 20px;
}
.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}