/* Footer */
.site-footer {
  background: #0b132b;
  color: #cfd8ff;
  padding: 60px 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #cfd8ff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #22c55e;
}

.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin-bottom: 8px;
}

.footer-services li a {
  color: #cfd8ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services li a:hover {
  color: #22c55e; /* highlight color on hover */
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
}


.brand p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.contact li {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  margin-left: 15px;
  color: #cfd8ff;
  text-decoration: none;
}

#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

#chatbot-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#chatbot-icon {
    width: 60px;
    height: 60px;
    background: #0b132b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

#chatbot-icon:hover {
    transform: scale(1.1);
}

/* Label next to icon */
#chatbot-label {
    margin-left: 10px;
    background: #fff;
    color: #0b132b;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Chat Window */
#chatbot-window {
    display: none;
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-direction: column;
    margin-top: 10px;
}

#chatbot-header {
    background: #0b132b;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f4f6fb;
}

.bot-message {
    background: #e5e7eb;
    color: #111827;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    max-width: 80%;
}

.user-message {
    background: #0b132b;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    align-self: flex-end;
    max-width: 80%;
}

#chatbot-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
}

#chatbot-send {
    background: #0b132b;
    color: #fff;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    border-radius: 12px;
    cursor: pointer;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

#chatbot-icon {
  animation: floatBot 3s ease-in-out infinite, pulseGlow 2.5s infinite;
}

@keyframes messagePop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bot-message,
.user-message {
  animation: messagePop 0.2s ease forwards;
}