    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 {
      font-weight: 700;
    }
    /* Navbar */
    .navbar {
      padding: 1rem 2rem;
    }
    .nav-link {
      font-weight: 500;
      margin-right: 1rem;
    }
    .btn-primary, .btn-outline-primary {
      border-width: 2px;
    }
    /* Hero */
    .hero {
     background: url('assests/Picture3.jpg') center center / cover no-repeat fixed;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: #ffffff;
      text-align: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top:0; left:0;
      width:100%; height:100%;
      background: rgba(0,0,0,0.5);
      z-index:1;
    }

    .hero .hero-content {
      position: relative;
      z-index:2;
      max-width: 800px;
      padding: 0 1rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }

    .hero .btn-lg {
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
    }

    /* Services Cards */
    .service-card {
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .service-icon i {
      font-size: 3rem;
      color: #007bff;
      margin-bottom: 1rem;
    }

    /* Pricing */
    .pricing-card {
      border: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .card-price {
      font-size: 2.5rem;
      margin: 0.5rem 0;
      color: #007bff;
    }

    .card-price .period {
      font-size: 1rem;
      color: #777;
    }

    /* Footer */
    .site-footer {
      background-color: #222;
      color: #ccc;
      padding: 40px 20px;
    }

    .site-footer a {
      color: #fff;
    }
    #chatbox {
    max-width: 400px; margin: 50px auto; padding: 20px;
    background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  #chatlogs { height: 300px; overflow-y: auto; border: 1px solid #ccc; padding: 10px; }
  .user, .bot {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
  }
  .user {
    background: #0084ff;
    color: white;
    align-self: flex-end;
    margin-left: auto;
  }
  .bot {
    background: #e5e5ea;
    color: black;
    align-self: flex-start;
    margin-right: auto;
  }
  #inputArea {
    display: flex;
    margin-top: 10px;
  }
  #inputArea input {
    flex-grow: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  #inputArea button {
    padding: 10px 15px;
    margin-left: 5px;
    border-radius: 8px;
    border: none;
    background-color: #0084ff;
    color: white;
    cursor: pointer;
  }
  </style>
  <style>
/* Floating chat button */
#chatButton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Chat container pop-up */
#chatPopup {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 360px;
    max-height: 600px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 1000;
    animation: slideUp 0.5s ease forwards;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#chatContent {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.message {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 80%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.message img { border-radius: 50%; width: 32px; height: 32px; }
.oliver { background: #0d6efd; color: #fff; align-self: flex-start; }
.user { background: #e5e7eb; color: #111827; align-self: flex-end; }
.agent { background: #6c757d; color: #fff; align-self: flex-start; }
.typing { font-style: italic; color: #6b7280; margin-bottom: 8px; align-self: flex-start; }
#chatInput { display: flex; border-top: 1px solid #e5e7eb; }
#chatInput input { flex: 1; padding: 12px; border: none; outline: none; font-size: 16px; }
#chatInput button { padding: 12px 16px; background: #0d6efd; color: #fff; border: none; cursor: pointer; font-weight: bold; }
a.quick-link { color: #fff; text-decoration: underline; cursor: pointer; margin-top: 4px; display: inline-block; }
   .template-card {
      transition: opacity 0.3s ease-in-out;
    }
    #templateFilter .btn.active {
      background-color: #0d6efd;
      color: #fff;
      border-color: #0d6efd;
    }
    #modalTemplateImage {
      max-height: 400px;
      object-fit: cover;
    }