<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Lato', sans-serif;
      background-color: #0d0d0d;
      color: #ccc;
      line-height: 1.8;
    }

    nav {
      position: fixed;
      width: 100%;
      top: 0;
      background-color: #111;
      padding: 15px 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(255,255,255,0.05);
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    nav a {
      color: #ddd;
      text-decoration: none;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      color: #fff;
    }

    .content {
      padding-top: 100px;
    }

    header {
      background: linear-gradient(to right, #1c1c1c, #333);
      text-align: center;
      padding: 60px 20px;
    }

    header img {
      max-width: 180px;
      margin-bottom: 20px;
    }

    h1 {
      font-family: 'Roboto Slab', serif;
      font-size: 2.5em;
      color: #f0f0f0;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.1em;
      color: #aaa;
    }

    section {
      padding: 60px 10%;
      border-top: 1px solid #2b2b2b;
      background-color: #141414;
    }

    section h2 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.8em;
      color: #eee;
      margin-bottom: 20px;
      border-left: 4px solid #888;
      padding-left: 15px;
    }

    section h3 {
      color: #bbb;
      margin-top: 30px;
      font-size: 1.2em;
    }

    section ul {
      margin: 15px 0;
      padding-left: 20px;
    }

    footer {
      background-color: #101010;
      color: #777;
      text-align: center;
      padding: 30px;
      font-size: 0.9em;
      border-top: 1px solid #222;
    }

    form {
      margin-top: 30px;
      max-width: 600px;
    }

    form input, form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      background-color: #1f1f1f;
      border: 1px solid #444;
      color: #fff;
      border-radius: 5px;
      font-size: 1em;
    }

    form button,
    .carousel-buttons button {
      background-color: #001f3f; 
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    form button:hover,
    .carousel-buttons button:hover {
      background-color: #004080; 
    }

    .shine {
      background: linear-gradient(90deg, #999, #fff, #999);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { background-position: -500px 0; }
      100% { background-position: 500px 0; }
    }

    .carousel-container {
      position: relative;
      width: 100%;
      margin: 40px 0;
      padding: 0 2%;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
      padding: 0 5px;
    }

    .carousel-slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .carousel-buttons {
      text-align: center;
      margin-top: 10px;
    }

    iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        gap: 15px;
      }

      section {
        padding: 40px 20px;
      }

      .carousel-container {
        padding: 0 1%;
      }

      .carousel-slide {
        padding: 0 2px;
      }

      .carousel-slide img {
        border-radius: 5px;
      }
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }

    .whatsapp-float img:hover {
      transform: scale(1.1);
    }
    #chatbot {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 300px;
      background: #f9f9f9;
      border: 1px solid #ccc;
      padding: 10px;
      font-family: sans-serif;
    }
    #chatbox {
      height: 200px;
      overflow-y: auto;
      border: 1px solid #ddd;
      margin-bottom: 10px;
      padding: 5px;
    }
    #userInput {
      width: 75%;
    }
    button {
      width: 20%;
    }

    
  </style>