/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Body Style */
body {
  background-image: url('background.jpg'); /* Replace with your background image path */
  background-size: cover;
  background-color: #f4f4f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 46, 45, 0.5);
  z-index: -1;
}

/* Navigation Bar */
nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  color: #ffffff;
  z-index: 1;
}

nav .logo img {
  width: 60px;
  margin-right: 8px;
}

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;
}

nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 83, 83, 0.2);
  border-radius: 5px;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

nav ul li a:hover::before {
  transform: scale(1);
}

/* Contact Container */
.contact-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  text-align: center;
  margin-top: 100px;
  opacity:0.7 ;
}

h1 {
  color: #0e0c0c;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.info-item {
  margin-bottom: 20px;
}

h2 {
  color: #555;
  font-size: 1.2em;
  margin-bottom: 8px;
}

p, a {
  color: #333;
  font-size: 1em;
  text-decoration: none;
}

a:hover {
  color: #0073e6;
}

.social-media a {
  color: #0073e6;
  font-weight: bold;
}

.social-media a:hover {
  color: #005bb5;
}

/* Centering the Contact Section */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 80px; /* Offset to avoid overlap with fixed nav */
}
.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;
}
