     /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0e0e0e;
            color: #fff;
        }

        /* Main Container */
        .container {
            display: flex;
            height: calc(100vh - 80px);
            width: 100%;
        }

        /* background: linear-gradient(to right, #1c0336, #78006d); */

        /* Left Panel */
        .left-panel {
            width: 35%;
            padding: 60px 40px;
            background: linear-gradient(to bottom,  #1c033600, #e0ecfc);
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 20px 20px 0;
            margin: 135px;
        }

        .left-panel h2 {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .left-panel p {
            margin: 5px 0;
            font-size: 17px;
        }

        .left-panel a {
            color: #000;
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icons img {
            width: 22px;
            height: 22px;
        }

        /* Right Panel */
        .right-panel {
            width: 65%;
            padding: 60px 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        form {
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .row {
            display: flex;
            gap: 10px;
        }

        .row input {
            width: 100%;
        }

        input,
        textarea {
            padding: 14px;
            border-radius: 10px;
            border: 1px solid #3a3a3a;
            background-color: rgb(18 18 18 / 31%);;
            color: #fff;
            font-size: 14px;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox {
            font-size: 13px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            line-height: 1.5;
        }

        .checkbox input {
            margin-top: 5px;
        }

        .checkbox a {
            color: #64b5f6;
            text-decoration: underline;
        }

        button[type="submit"] {
            padding: 14px;
            background-color: linear-gradient(to bottom, #1c033666, #e0ecfc9e);;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #539ddf;
        }

        /* Popup styles */
        .thankyou-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .thankyou-box {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            max-width: 520px;
            width: 90%;
            text-align: center;
            color: #111;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .check-icon .circle {
            width: 64px;
            height: 64px;
            background: #e0f0ff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #2563eb;
            margin-bottom: 20px;
        }

        .thankyou-box h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .thankyou-box p {
            font-size: 14px;
            color: #444;
            margin-bottom: 25px;
        }

        .thankyou-details {
            display: flex;
            justify-content: space-around;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .detail {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1 1 30%;
            min-width: 120px;
        }

        .detail span {
            font-size: 18px;
        }

        .detail small {
            font-size: 12px;
            color: #666;
        }

        .detail strong {
            font-size: 14px;
            color: #000;
        }

        .btn-home {
            display: inline-block;
            background-color: #2563eb;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .btn-home:hover {
            background-color: #1d4ed8;
        }