        body {
          min-height: 100vh;

          background: rgb(252, 250, 250);

          margin: 0;
          padding: 0;
          font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        .hero-section {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-bottom: 50px;
        }

        /* Hero image now in HTML */
        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-content {
            z-index: 3;
            position: relative;
            justify-content: center;
            background: rgba(56, 56, 56, 0.6);
            border-radius: 15px;

            padding: 0 60px 0 60px;
            backdrop-filter: blur(1.1px);
            box-shadow: 0 20px 50px rgba(35, 35, 35, 0.5);
        }

        .hero-content h1 {
          font-size: 2.5rem;
          font-weight: 700;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          background: linear-gradient(to right, #fff, #e0e0e0);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          animation: fadeInUp 1s ease-out forwards, glow 2s infinite alternate;
          opacity: 0;
        }

        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(30px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @keyframes glow {
          from {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          }

          to {
            text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
          }
        }

        .mian_container {
          max-width: 1100px;
          margin: 3rem auto;
          padding: 0 1rem;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
        }

        .form-card {
          padding: 2rem;
          border-radius: 15px;
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
          transition: 0.3s;
        }

        .form-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .form-card h2 {
          margin-bottom: 1rem;
          color: #16213e;
        }

        .form-group {
          margin-bottom: 1.2rem;
        }

        label {
          display: block;
          margin-bottom: 0.3rem;
          font-weight: 600;
        }

        input,
        textarea,
        select {
          width: 90%;
          padding: 0.8rem;
          border: 1px solid #ccc;
          border-radius: 8px;
          font-size: 1rem;
        }

        input:focus,
        textarea:focus,
        select:focus {
          border-color: #1a73e8;
          outline: none;
        }

        button {
          background: #1a73e8;
          color: white;
          padding: 0.9rem 1.5rem;
          border: none;
          border-radius: 8px;
          font-size: 1rem;
          cursor: pointer;
          transition: 0.3s;
        }

        button:hover {
          background: #1558b0;
        }



        /* ✅ Responsive Breakpoints */
        @media (max-width: 1024px) {
          .mian_container {
            grid-template-columns: 1fr;
            /* Stack on tablets */
            gap: 1.5rem;
          }

          .form-card {
            padding: 1.5rem;
          }
        }

        @media (max-width: 768px) {
          .form-card h2 {
            font-size: 1.3rem;
          }

          input,
          textarea,
          select {
            font-size: 0.95rem;
            padding: 0.7rem;
          }

          button {
            font-size: 0.95rem;
            padding: 0.8rem 1.3rem;
          }
        }

        @media (max-width: 480px) {
          .mian_container {
            margin: 1.5rem auto;
            padding: 0 0.5rem;
          }

          .form-card {
            padding: 1.2rem;
            border-radius: 12px;
          }

          .form-card h2 {
            font-size: 1.2rem;
          }

          input,
          textarea,
          select {
            font-size: 0.9rem;
            padding: 0.6rem;
          }

          button {
            width: 100%;
            /* Full width button on mobile */
            font-size: 0.9rem;
            padding: 0.7rem;
          }
        }