:root{
  /* theme colors */
  --bs-primary: #ec5641;
  --bs-primary-rgb: 236, 86, 65;
  --bs-secondary: #6a2b9a;
  --bs-secondary-rgb: 106, 43, 154;
}

.btn.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #982c1e;
  --bs-btn-hover-border-color: #982c1e;
  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
}

.btn.btn-secondary {
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-bg: #3c115c;
  --bs-btn-hover-border-color: #3c115c;
  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffffff;
}

.regular-text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.logo img {
    max-height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 55px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--bs-primary);
}

.login-btn {
    padding: 2px 25px;
}

.site-footer * {
    background-color: transparent !important;
}

/* Footer Styles */
.site-footer {
    background-color: #f5f5f5 !important;
    padding: 40px 0 10px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.app-badge {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--bs-secondary);
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--bs-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.copyright {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copyright-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #666;
    border-radius: 50%;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .app-buttons {
        justify-content: center;
    }
}

/* Chatbot */
.chatbot-circle {
  position: fixed;
  right: 28px;
  bottom: 250px;
  width: 152px;
  height: 152px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(142,86,255,0.14);
  z-index: 1000;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.chatbot-circle img.chatbot-icon {
  width: 72%;
  height: 72%;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.chatbot-circle[aria-grabbed="true"] {
  cursor: grabbing;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 26px 52px rgba(142,86,255,0.20);
}

@media (max-width: 760px) {
  .chatbot-circle {
    width: 108px;
    height: 108px;
    right: 16px;
    bottom: 24px;
  }
  .chatbot-circle img.chatbot-icon { width: 68%; height: 68%; }
}