/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('river.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: absolute;
    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 {
    display: flex;
    align-items: center;
  }
  
  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 */
  }
  
  /* Add hover effect with a light red box */
  nav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 19, 182, 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 */
  }
 /* Updated Section Styling */
.hover-image-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Align items to the center */
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust position to align center */
  cursor: pointer;
}

/* Text Container */
.text-container {
  font-size: 2rem; /* Increase font size */
  font-weight: bold;
  color: #13cf68;
  transition: color 0.3s ease;
  z-index: 2; /* Ensure it's above the dropdown */
  text-align: center; /* Center the text */
}

/* Image Dropdown */
.image-dropdown {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  margin-top: 10px; /* Space between text and image */
  position: relative;
}

/* Show Image on Hover */
.hover-image-section:hover .image-dropdown {
  opacity: 1;
  visibility: visible;
}

/* Individual Image */
.image-dropdown img {
  width: 900px; /* Increase the size of the image */
  border-radius: 10px;
  transform: translateY(-20px); /* Start slightly above */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hover-image-section:hover .image-dropdown img {
  transform: translateY(0); /* Move into view */
  opacity: 1;
}
.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;
}
