/* Reset and Body */
body {
  font-family: Arial, sans-serif;
  background: #f0f2f5;
  margin: 0;
  padding: 0;
}

/* Section 1: Header */
.header-section {
  text-align: center;
  padding: 30px 20px 10px;
  background-color: #ffffff;
}

.main-heading {
  color: #007bff;
  font-size: 32px;
  margin: 0;
}

.sub-heading {
  color: #555;
  font-size: 20px;
  margin-top: 5px;
}

/* Section 2: Main Content */
.chat-section {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.main-container {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}

/* Chat Container */
.chat-container {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-box {
  height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
  background: #fafafa;
}

.message {
  margin: 5px 0;
}

.user {
  text-align: right;
  color: #007bff;
}

.bot {
  text-align: left;
  color: #28a745;
}

.input-group {
  display: flex;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

/* Image Container */
.image-container {
  flex: 0 0 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}
/* Section 3: Footer */
.footer-section {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.footer-text p {
  margin: 5px 0;
  color: #444;
  font-size: 16px;
}

.footer-text a {
  color: #007bff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
