/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-image: url('waterfall.jpg'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
}

/* Overlay with low opacity */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.767); /* Dark overlay with low opacity */
  z-index: -1; /* Ensure the overlay stays behind the content */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav .logo img {
  width: 60px;
  margin-right: 8px;
  border-radius: 20px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff; /* Optional: change text color on hover */
}

nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 83, 83, 0.2); /* Light red color with opacity */
  border-radius: 5px;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

nav ul li a:hover::before {
  transform: scale(1); /* Scale up to full size on hover */
}

/* Card Container */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 50px; /* Adjust as needed to position vertically */
}

/* Card Styling */
.card {
  background-color: rgba(248, 251, 251, 0.058); /* Semi-transparent white background */
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  width: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 150px; /* Adjust height as needed */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #fbfafa;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

/* Card Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.chatbot-header {
  background-color: #FFA500;
  color: white;
  padding: 10px;
  text-align: center;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chatbot Styling */
.chatbot {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
  height: 250px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  background-color: #FFA500;
  color: white;
  padding: 10px;
  text-align: center;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.chatbot {
  position: fixed;
  bottom: 50px;  
  right: 20px;
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 60px;  /* Default collapsed size */
  transition: height 0.3s ease-in-out;
  z-index: 1000; /* Ensure chatbot is above other elements */
}

.chatbot.expanded {
  height: 300px;  /* Adjusted expanded height */
}

.chatbot-header {
  padding: 10px;
  background-color: #FFA500;
  color: white;
  text-align: center;
  cursor: pointer;
}

.chatbot-header h3 {
  margin: 0;
}

.arrow-down {
  font-size: 20px;
  margin-top: 5px;
  text-align: center;
  cursor: pointer;
}

.chatbot-box {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
}

.chatbot-message {
  margin: 10px 0;
}

.bot-message p {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
}

.user-message p {
  background-color: #ffa500;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: right;
}

input[type="text"] {
  width: calc(100% - 60px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  width: 50px;
  padding: 10px;
  background-color: #FFA500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #FF8C00;
}
