body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: black;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      overflow-x: hidden;
    }

    h1 {
      text-align: center;
      font-size: 2em;
      margin-top: 20px;
      color: #00e6e6;
      text-shadow: 0 0 10px #00e6e6;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 100px;
      margin-top: 30px;
      perspective: 1000px;
    }

    .card {
      width: 250px;
      height: 300px;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s;
      cursor: pointer;
    }

    .card:hover {
      transform: rotateY(180deg);
    }

    .card-side {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      backface-visibility: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

    .front {
      background:#00e6e6;
      box-shadow: 0 0 10px #00e6e6;
    }

    .back {
      background: #111;
      transform: rotateY(180deg);
      border: 2px solid #00e6e6;
    }

    img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 10px;
      border: 3px solid #fff;
    }

    .btn {
      background: #00e6e6;
      color: #000;
      border: none;
      padding: 10px 15px;
      margin-top: 10px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn:hover {
      background: #fff;
      color: #000;
      transform: scale(1.1);
    }

    
    form {
      display: flex;
      flex-direction: column;
      width: 220px;
      margin: 10px auto;
    }

    input, textarea {
      margin: 5px 0;
      padding: 8px;
      border-radius: 6px;
      border: none;
      outline: none;
      transition: 0.3s;
    }

    input:focus, textarea:focus {
      box-shadow: 0 0 10px #00e6e6;
      transform: scale(1.05);
    }

    input[type="submit"] {
      background: #00e6e6;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    input[type="submit"]:hover {
      background: #fff;
    }

   
    @media (max-width: 600px) {
      .contact-container {
        flex-direction: column;
        align-items: center;
      }
    }