/* General styles */
body {
  font-family: "Overpass", sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  background-color: #fff;
  height: 10vh;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333;
}

.logo img {
  height: 40px;
margin-right: 0.5rem;
}

.logo h1 {
  font-family: "Bodoni Moda", serif;
  font-size: 2.5em;
  margin: 0;
}

.logo p {
  font-size: 0.9em;
  margin: 0;
  margin-bottom: 20px;
}

/* Introduction */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 110vh;
  background-image: url("intro_bg.jpg");
  background-size: cover;
  background-position: center;
  background-blur: 5px;
  color: #fff;
  text-align: center;
	padding: 2rem;
}

.intro-tagline {
  font-family: "Bodoni Moda", serif;
  max-width: 85%;
  font-size: 2.5em;
  margin-bottom: 1rem;
}

.intro-slogan {
  font-size: 1.3em;
  max-width: 85%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* About Us */
.about-us {
  display: flex;
  justify-content: space-between;
  align-items: Center;
  height: 110vh;
  background-image: url("about_us_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 0 5%;
  color: #fff;
}

.about-us-left {
  width: 35%;
  align-items: flex-start;
}

.about-us-right {
  width: 65%;
  Salign-items: flex-start;
}

.about-us h2, .about-us h3 {
  font-family: "Bodoni Moda", serif;
  align-items: flex-start;
  margin: 0;
  margin-bottom: 20px;
}

.about-us h2 {
  font-size: 3em;
}

.about-us h3 {
  font-size: 2.5em;
}

.about-us p {
  max-width: 90%;
  font-size: 1.3em;
  line-height: 150%;
}

/* People */
.people {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  grid-template-columns: repeat(3,1fr);
  color: #000;
  padding: 40px;
}

.people h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 2em;
  margin-bottom: 20px;
}

.people-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: top;
  padding-top: 30px;
  width: 100%;
}

.people-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30%;
  text-align: left;
}

.people-img {
  width: 60%;
  height: auto;
  border-radius: 5%;
display: block;
 margin-left: auto;
margin-right: auto;
}

.people h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 1.5em;
  margin: 20px 0;
}

.people p {
  margin: 0;
  font-size: 1.0em;
  margin-bottom: 10px; /* Updated */
}

.bio {
  margin-top: 10px;
}


/* Call to Action */
.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #000;
  color: #fff;
  padding: 40px;
}

.cta h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 3em;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.cta-form {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.cta-form label {
  font-family: "Overpass", sans-serif;
  font-size: 1em;
  margin-bottom: 5px;
}

.cta-form input,
.cta-form textarea {
  font-family: "Overpass", sans-serif;
  font-size: 1em;
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
}

.cta-form button {
  font-family: "Overpass", sans-serif;
  font-size: 1em;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-form button:hover {
  background-color: #333;
}

.cta-bg {
  background-image: url('cta_bg.jpg');
  background-size: cover;
  background-position: center;
  width: 45%;
  height: 500px;
  border-radius: 5px;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 20px;
}

footer p {
  margin: 0;
  margin-bottom: 10px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-media a:hover {
  color: #ccc;
}

.social-media i {
  font-size: 1.5em;
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.chatbot-image {
  width: 90px;
  cursor: pointer;
}

.chatbox {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 400px;
  overflow: hidden;
}

.chatbox-header {
  padding: 0px 0px 0px 10px; /* Reduce the bottom padding */
  background-color: rgba(241, 241, 241, 0.9);
  border-bottom: 1px solid #ccc;
}

.chatbox-messages {
  flex-grow: 1;
  padding: 10px;
  overflow-y: auto;
}

.chatbox-input {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(241, 241, 241, 0.9);
}

.chatbox-messages {
  /* Add this property */
  display: flex;
  flex-direction: column;
}

.user-message,
.chatbot-message {
  /* Add these properties */
  border-radius: 20px;
  padding: 10px;
  max-width: 70%;
}

.user-message {
  /* Add these properties */
  align-self: flex-end;
  background-color: #DCF8C6;
}

.chatbot-message {
  /* Add these properties */
  background-color: #ECECEC;
}

.time-stamp {
  /* Add these properties */
  font-size: 0.7em;
  color: gray;
  margin-top: 2px;
  text-align: right;
}


#message-input {
  flex-grow: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 10px;
}

.time-stamp {
  font-size: 0.7em; /* Smaller time and date */
}




/* Responsive design */
@media screen and (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
  }

  .cta-form,
  .cta-bg {
    width: 100%;
  }

  .cta-form {
    margin-bottom: 20px;
  }
}




/* Responsive design */
@media screen and (max-width: 768px) {
  .people-wrapper {
    flex-direction: column;
  }

  .people-card {
    width: 80%;
    margin-bottom: 40px;
  }

  .people-card:last-child {
    margin-bottom: 0;
  }
}



@media screen and (max-width: 850px) {
  .about-us {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 5%;
  }

  .about-us-left,
  .about-us-right {
    width: 100%;
  }

  .about-us-right {
    margin-top: 40px;
  }
}
