      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background: linear-gradient(
          35deg,
          rgba(6, 0, 151, 0.9) 0%,
          rgba(130, 4, 255, 0.9) 73%,
          rgba(193, 15, 255, 0.9) 100%
        );
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
      }

      .container {
        width: 80%;
        max-width: 900px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
      }

      h1 {
      color: #000;
      font-size: 40px;
      font-weight: bold;
      padding: 15px 10px 0 10px;
    }
      h2 {
        color: #f4f4f4;
        margin-bottom: 20px;
      }

      .contact-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding-bottom: 35px;
      }

      .contact-left img {
        width: 100%;
        max-width: 300px;
        border-radius: 20px;
        display: block;
        margin: auto;
      }

      .contact-right {
        flex: 1;
        max-width: 400px;
      }

      form {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      input,
      textarea {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-size: 16px;
        backdrop-filter: blur(5px);
        transition: background 0.3s;
      }

      input:focus,
      textarea:focus {
        background: rgba(255, 255, 255, 0.3);
        outline: none;
      }

      textarea {
        height: 100px;
      }

      input::placeholder,
      textarea::placeholder {
        color: #ddd;
      }

      button {
        background: #fff;
        color: #000;
        padding: 12px;
        border: none;
        cursor: pointer;
        font-size: 18px;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
      }

      button:hover {
        transform: scale(1.1);
      }

      /* Success/Error Message */
      #message-box {
        display: none; /* Hidden by default */
        margin-top: 10px;
        padding: 10px;
        border-radius: 5px;
        font-weight: bold;
      }

      .success {
        background-color: #28a745;
        color: white;
      }

      .error {
        background-color: #dc3545;
        color: white;
      }

      /* Footer */
      .footer {
        width: 100%;
        text-align: center;
        border-radius: 10px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.2);
      }

      .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
      }

      .social-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        background-color: #fff;
        color: #000;
        border-radius: 50%;
        text-decoration: none;
        font-size: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
      }

      .social-icons a:hover {
        transform: scale(1.1);
      }

      .footer p {
        font-size: 12px;
        color: #ffff;
        padding: 5px;
      }

      /* WhatsApp Floating Button */
      .whatsapp-btn {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        transition: transform 0.3s ease-in-out;
      }

      .whatsapp-btn:hover {
        transform: scale(1.1);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .container {
          width: 90%;
        }
        .contact-section {
          flex-direction: column;
          text-align: center;
          gap: 30px;
        }
      }

      @media (max-width: 480px) {
        h1 {
          font-size: 30px;
        }
        h2 {
          font-size: 18px;
        }
        .social-icons a {
          width: 40px;
          height: 40px;
          font-size: 16px;
        }
        .whatsapp-btn {
          width: 50px;
          height: 50px;
          font-size: 24px;
        }
      }