* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      background-color: white  !important;
      color: #c7d300;
      overflow-x: hidden;
      position: relative;
    }

    /* Twinkling Background Dots */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(#c7d300 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: -1;
      animation: stars 12s linear infinite;
    }

    @keyframes stars {
      from { background-position: 0 0; }
      to { background-position: 100px 100px; }
    }

    header {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      padding: 20px 40px;
      background-color: #111;
      box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
    }

    header a {
      text-decoration: none;
      color: #c7d300;
      font-weight: bold;
      transition: 0.3s;
    }

    header a:hover {
      color: #fff;
    }

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 50px 20px;
    }

    .contact-container {
      display: flex;
      max-width: 1100px;
      width: 100%;
      background-color: #111;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
      overflow: hidden;
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .left {
      flex: 1;
      background: url('https://source.unsplash.com/600x600/?creative,technology') no-repeat center center/cover;
      animation: zoomIn 1.5s ease;
    }

    @keyframes zoomIn {
      from { transform: scale(1.05); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .right {
      flex: 1.2;
      padding: 40px;
      animation: slideIn 1.3s ease;
    }

    @keyframes slideIn {
      from { transform: translateX(100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    .right h2 {
      margin-bottom: 20px;
      color: #c7d300;
      font-size: 28px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #c7d300;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 10px 14px;
      background: #000;
      color: #c7d300;
      border: 1px solid #c7d300;
      border-radius: 10px;
      transition: 0.3s;
      font-size: 14px;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #fff;
      outline: none;
    }

    .btn-submit {
      background-color: #c7d300;
      color: #000;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background-color: #fff;
      color: #000;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
      .left {
        height: 200px;
      }
    }
      @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  a:hover[href*="#contact"] {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 25px #c7d300;
  }
   @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  a:hover[href*="#contact"] {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 25px #c7d300;
  }
 .contact-section {
    background-color: #000;
    padding: 60px 20px;
    color: #c7d300;
    display: flex;
    justify-content: center;
  }

  .contact-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px #c7d30040;
    
  }

  .left {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1605379399642-870262d3d051?auto=format&fit=crop&w=600&q=60') center/cover no-repeat;
    min-height: 400px;
  }

  .right {
    flex: 1;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
  }

  .right h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #c7d300;
  }

  .form-group {
    margin-bottom: 15px;
  }

  label {
    display: block;
    margin-bottom: 6px;
    color: #eee;
  }

  input, select, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c7d300;
    background-color: #111;
    color: #c7d300;
    font-size: 16px;
  }

  .btn-submit {
    background-color: #c7d300;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-submit:hover {
    background-color: #fff;
  }
   .profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #c7d300;
    box-shadow: 0 0 25px #c7d30088;
    object-fit: cover;
    animation: float 4s ease-in-out infinite;
    margin-top: 30px; /* default top margin */
  }

  /* Mobile view adjustment */
  @media only screen and (max-width: 768px) {
    .profile-pic {
      margin-top: 50px; /* more margin for smaller screens */
    }
  }