/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f9c5d1, #f3e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  .container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-in-out;
  }
  
  h1 {
    text-align: center;
    color: #a8547e;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: bounceIn 1.5s ease;
  }

  .developer{
    text-align: center;
    color: #a8547e;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    animation: bounceIn 1.5s ease;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 12px;
    font-size: 16px;
    border: 2px solid #d1a7d2;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fce1e1;
  }
  
  input:focus, textarea:focus {
    border-color: #ff6f91;
    box-shadow: 0 0 10px rgba(255, 111, 145, 0.6);
  }
  
  textarea {
    min-height: 150px;
    resize: none;
  }
  
  button {
    padding: 12px 20px;
    background-color: #ff6f91;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-color: #ff4b7f;
    transform: translateY(-3px);
  }
  
  .messages {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .message {
    border-bottom: 1px solid #f0c6d2;
    padding: 15px 0;
    animation: slideInUp 0.5s ease-out;
  }
  
  .message:last-child {
    border-bottom: none;
  }
  
  .message p {
    color: #444;
  }
  
  .message strong {
    color: #ff6f91;
  }

  .bot-reply {
    background: #f4f4f4;
    padding: 10px;
    border-left: 3px solid #3498db;
    margin-top: 5px;
    white-space: pre-wrap;
  }
  
  .bot-reply code {
    background: #e8e8e8;
    padding: 2px 4px;
    font-family: monospace;
    border-radius: 4px;
  }
  
  small {
    display: block;
    color: #999;
    font-size: 0.85em;
    margin-top: 10px;
  }
  
  /* Keyframe Animations */
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @keyframes bounceIn {
    0% { transform: translateY(-50px); opacity: 0; }
    60% { transform: translateY(10px); opacity: 1; }
    80% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }
  
  @keyframes slideInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  