

/*** Footer ***/
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 10px;
    right: 40px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
#chat-widget {
  width: 320px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  border-radius: 12px;
  display: none;
  z-index: 9999;
}

#chat-open-btn {
  position: fixed;
  bottom: 140px;
  right: 20px;
  background: #007bff;
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  z-index: 9999;
}

.messages {
  height: 260px;
  overflow-y: auto;
  border: 1px solid #eee;
  padding: 6px;
  margin-bottom: 6px;
  font-size: 14px;
}

.message {
  background: #f1f1f1;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.message.user {
  background: #007bff;
  color: white;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 14px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  z-index: 9999;
}
.bot{background:#e9f3ff;text-align:left;}
.user{background:#d1ffd8;text-align:right;}
/* widget styles (Bootstrap still used) */
#chat-widget { position: fixed; right: 20px; bottom: 90px; z-index: 1055; width: 320px; max-width: calc(100% - 40px); display: none; }
#chat-widget .card { border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
#chat-widget .messages { height: 300px; overflow-y: auto; padding: 16px; background:#f7f9fc; border-radius:8px; }
.msg { margin-bottom:12px; display:flex; }
.msg.bot .bubble { background:#0d6efd; color:#fff; }
.msg.user { justify-content: flex-end; }
.msg .bubble { max-width:78%; padding:10px 12px; border-radius:12px; }
#chat-input { border-radius: 30px; }
#whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 1060;
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:#25d366; color:#fff; box-shadow:0 8px 20px rgba(0,0,0,0.2); cursor:pointer;
}
#chat-open-btn {
  position: fixed; right: 90px; bottom: 22px; z-index: 1060;
  background: #0d6efd; color: #fff; border-radius: 999px; padding: 8px 14px; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
/* small screens */
@media(max-width:420px){ #chat-widget{ right:10px; left:10px; width:auto; } }