footer{
    display: flex;
    flex-direction: row;
    gap: 20px;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    justify-content: space-evenly;
    padding-bottom: 20px;
}
footer img {
    width: 100px;
    height: fit-content;
    justify-self: start;
}
.pages-links{
    display: flex;
    flex-direction: column;
}
.pages-links h3{
    color: rgb(255, 255, 255);
}
.pages-links a{
    text-decoration: underline;
    text-decoration-color: black;
    color: rgb(222, 222, 222);
    font-size: 18px;
    margin-top: 5px;
    transition: 0.5s ease;
}
.pages-links a:hover{
    color: rgb(255, 255, 255);
    text-decoration-color: rgb(255, 255, 255);
}
.social-media-links{
    display: flex;
    flex-direction: column;
    align-items: end;
    /* justify-content: end; */


}
.social-media-links h3{
    color: rgb(255, 255, 255);

}
.social-media-links a{
    
    display: flex;
    align-items: center;
    text-decoration: underline;
    text-decoration-color: black;
    margin: 0px;
    font-size: 18px;
    color: rgb(186, 186, 186);
    transition: 0.5s ease;
}
.social-media-links a:hover{
    color: rgb(255, 255, 255);
    text-decoration-color: rgb(255, 255, 255);
    
}
.social-media-links a p{
    margin-right: 5px;
}
.social-media-links img{
    width: 30px;
    height: auto;
    background-color: rgb(186, 186, 186);
    border-radius: 15px;
    padding: 2px;
}
.social-media-links img:hover{
    background-color: white;
}
#ai-chat-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#ai-chat-box {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 340px;
  height: 460px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  font-family: Arial, sans-serif;
}

#ai-chat-header {
  background: #111;
  color: white;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#ai-close {
  background: none;
  color: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

#ai-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f5f5f5;
}

.ai-message {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.4;
  font-size: 14px;
}

.ai-message.user {
  background: #111;
  color: white;
  margin-left: auto;
}

.ai-message.bot {
  background: white;
  color: #222;
  border: 1px solid #ddd;
}

#ai-form {
  display: flex;
  border-top: 1px solid #ccc;
}

#ai-input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
}

#ai-form button {
  background: #111;
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}