
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f0f4f8;
    }

    .chat-toggle {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: linear-gradient(135deg, #13bffd, #05508d);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }
    .chat-toggle img {
      width: 32px;
      height: 32px;
    }

    .chat-panel {
      display: none;
      position: fixed;
      bottom: 110px;
      right: 30px;
      width: 380px;
      max-height: 540px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      flex-direction: column;
      z-index: 1001;
      animation: slideUp 0.5s ease-out;
    }

    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .chat-header {
      background: linear-gradient(135deg, #025e11, #004e92);
      color: #fff;
      padding: 16px 20px;
      font-size: 18px;
      font-weight: bold;
      position: relative;
    }
    .chat-header .close {
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 22px;
      cursor: pointer;
    }

    .chat-body {
      background: #f1f6fb;
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
      max-height: 400px;
    }

    .bubble {
      display: flex;
      align-items: flex-start;
      animation: fadeIn 0.4s ease-out forwards;
    }
    .bubble.bot .text {
      background: #e1f0ff;
      color: #333;
      border-radius: 16px 16px 16px 4px;
    }
    .bubble.user {
      flex-direction: row-reverse;
    }
    .bubble.user .text {
      background: #0066ff;
      color: white;
      border-radius: 16px 16px 4px 16px;
    }
    .bubble .text {
      max-width: 75%;
      padding: 12px 16px;
      line-height: 1.4;
      font-size: 15px;
    }
    .bubble img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      margin: 0 8px;
      object-fit: cover;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .typing-dots {
      width: 24px;
      display: flex;
      justify-content: space-between;
      margin-left: 12px;
    }

    .typing-dots span {
      width: 6px;
      height: 6px;
      background: #999;
      border-radius: 50%;
      animation: blink 1.4s infinite;
    }

    .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
    .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes blink {
      0%, 80%, 100% { opacity: 0; }
      40% { opacity: 1; }
    }

    .input-area {
      padding: 14px 16px;
      background: white;
      border-top: 1px solid #ddd;
      display: flex;
      align-items: center;
    }

    .input-area input {
      flex-grow: 1;
      padding: 12px 16px;
      font-size: 15px;
      border: 1.5px solid #0066ff;
      border-radius: 30px;
      outline: none;
    }

    .input-area button {
      margin-left: 10px;
      padding: 10px 18px;
      background: #0066ff;
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
    }

    .input-area button:disabled {
      background: #aacbff;
      cursor: not-allowed;
    }

    .toast {
      display: none;
      position: fixed;
      bottom: 460px;
      right: 30px;
      background: #4BB543;
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      z-index: 1002;
      animation: fade 0.5s ease-out;
    }

    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @media (max-width: 420px) {
      .chat-panel {
        width: 90%;
        right: 5%;
      }
    }
  




 /* Footer Styles */
.footer {
  background: linear-gradient(135deg, #000428, #004e92);
  color: #f0f4f8;
  padding: 50px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo {
  width: 100px;
  margin-top: 20px;
}

.footer h2,
.footer h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
 
}

.footer h2::after,
.footer h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #00c3ff;
  bottom: -5px;
  left: 0;
}

.footer-tagline {
  background: #fff;
  color: #003a7c;
  font-weight: bold;
  display: inline-block;
  padding: 8px 15px;
  font-size: 11px;
  border-radius: 12px;
  margin-top: 5px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 12px 0;
}

.footer-col ul li a {
  color: #d0d9e6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00c3ff;
  transform: scale(1.03);
}

.footer-col.contact p,
.footer-col.contact a {
  font-size: 15px;
  color: #c9d7ef;
  line-height: 1.6;
}

.footer-col.contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom h3 {
  color: #00c3ff;
  font-size: 20px;
  margin-bottom: 15px;
}

.social-icons a {
  margin: 0 10px;
  color: #003a7c;
  font-size: 20px;
  background: white;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  background: #00c3ff;
  color: white;
}

.newsletter {
  margin-top: 25px;
  font-size: 16px;
}

.newsletter form {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 12px 15px;
  width: 260px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.newsletter button {
  background: #007bb8;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #00c3ff;
  color: #003a7c;
}

.success-message {
  color: #22c55e;
  font-size: 14px;
  margin-top: 15px;
  display: none; /* Hidden by default */
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

/* Footer bottom credit */
.footer-credit {
  text-align: center;
  font-size: 13px;
  color: #a9b7c6;
  margin-top: 30px;
  font-weight: 600;
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    min-width: 100%;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }

  .newsletter button {
    width: 100%;
  }
}
