 
    /* General Body Styling */
    body {
        font-family: 'Arial', sans-serif;
        ###background: linear-gradient(135deg, #f0f2f5, #e1e6f0);
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
		
    }

    /* Container Styling */
    .container {
        ###background-color: transparent !important;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 900px;
        margin: 20px;
        border: 1px solid #ddd;
    }

    /* Form Heading with Logo and Name */
    .form-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
		color: #333333;
		
    }

    .form-heading img {
        width: 150px;  /* Adjust size of the logo */
        height: 150px;
        margin-right:25px;  /* Space between logo and name */
    }

    .form-heading {
        font-size:1.2em ;
        color: #333;
        font-weight: 700;
        letter-spacing: 1px;
		color: #333333;
    }

    /* Label Styling */
    label {
       font-size:1.2em;
        margin-bottom: 8px;
        display: block;
        font-weight: normal;
        color: #333333;
    }
	
	 p {
       font-size:1em;
        margin-bottom: 8px;
        display: block;
        font-weight: normal;
        color: #333333;
    }

    /* Input Fields Styling */
    input[type="text"],
    input[type="email"],
    input[type="date"],
    input[type="checkbox"] {
        width: 100%;
        padding: 12px;
        margin: 8px 0 16px 0;
        border-radius: 8px;
        border: 1px solid #ccc;
        background-color: #fafafa;
        font-size: 1em;
        transition: all 0.3s ease;
    }

    /* Input Fields Focus Effect */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="date"]:focus {
        border-color: #007BFF;
        ###background-color: #eaf5ff;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
    }

    /* Checkbox Styling */
    input[type="checkbox"] {
        width: auto;
        height: 20px;
        margin-right: 10px;
        transition: transform 0.2s ease;
    }

   input[type="submit"] {
    background-color: #007BFF;  /* Bright blue background */
    color: white;               /* White text */
    border: none;               /* No border */
    padding: 16px 20px;         /* Padding for larger button */
    border-radius: 8px;         /* Rounded corners */
    cursor: pointer;           /* Pointer cursor on hover */
    width: 100%;                /* Make button take full width */
    font-size: 1.2rem;          /* Larger font size */
    text-transform: uppercase;  /* Uppercase text */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Submit Button Hover Effect */
input[type="submit"]:hover {
    background-color: #0056b3;  /* Darker blue when hovered */
    transform: scale(1.05);      /* Slightly enlarge the button */
}
	
	/* New Payment Details Section */
    .payment-details {
        margin-top: 30px;
        padding: 15px;
        background-color: #f7f7f7;
        border-radius: 8px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		
    }

    .payment-details h3 {
        font-size: 1.8rem;
        color: #333333;
        margin-bottom: 20px;
        text-align: center;
    }

    .payment-details .input-group {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    input-group input {
        width: 48%; /* Divide the space evenly between Name and Application No */
    }

    /* Placeholder Styling */
    ::placeholder {
        color: #999;
        font-style: italic;
    }


    /* Checkbox Group Styling */
    .checkbox-group {
        margin-bottom: 20px;
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
        .container {
            padding: 20px;
            margin: 15px;
            width: 100%;
        }

        h2 {
            font-size: 1.6rem;
        }

        label {
            font-size: 1.2em;
        }

        input[type="submit"] {
            font-size: 1.2em;
        }
    }

    /* Animation for Input Fields */
    @keyframes shake {
        0% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        50% { transform: translateX(5px); }
        75% { transform: translateX(-5px); }
        100% { transform: translateX(0); }
    }

    input[type="text"]:invalid,
    input[type="email"]:invalid {
        animation: shake 0.3s ease;
        border-color: red;
    }

    /* Placeholder Styling */
    ::placeholder {
        color: #999;
        font-style: italic;
    }

    /* Reducing input field size when focused */
    input[type="checkbox"]:focus {
        transform: scale(1.2);
    }
	
 /* Payment Details Table Styling */
    .payment-details-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .payment-details-table th, .payment-details-table td {
        padding: 10px;
        border: 1px solid #ccc;
        text-align: left;
    }

    .payment-details-table th {
        background-color: #f0f0f0;
    }

    .payment-details-table td {
        background-color: #fafafa;
    }

  