body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    height: 100%;
    width: 100%;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    margin-top: 20px;
}

.apply-now-btn img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* NEXT button styling */
.next-btn img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    
}

.custom-next-btn {
    background-color: #4e2472; /* Button background color */
    color: #fff; /* Button text color */
    padding: 15px 40px 15px 30px; /* Adjust padding for button size */
    border: none; /* Remove border */
    border-radius: 50px; /* Rounded corners */
    font-size: 1rem; /* Text size */
    font-weight: bold; /* Text bold */
    text-transform: uppercase; /* Text uppercase */
    display: inline-block; /* Ensure it's displayed properly */
    text-align: center; /* Center text */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Button shadow */
    position: relative; /* To position the arrow */
    text-decoration: none; /* Remove underline */
    transition: all 0.3s ease; /* Smooth transition on hover */
    white-space: nowrap; /* Keep text on one line */
}

.custom-next-btn:hover {
    background-color: #6a2c91; /* Lighter background color on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    color: #fff; /* Ensure text remains white on hover */
    text-decoration: none; /* Remove underline */
}

.custom-next-btn i {
    margin-left: 10px; /* Adjust the space between text and arrow */
}

/* The container div to cover the entire screen */
.container-full {
    min-height: calc(100vh - var(--nav-height)); /* Full viewport height */
    background-color: #ff7f3f; /* Orange background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.btn-warning {
    background-color: #ff7f3f;
    border-color: #ff7f3f;
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 30px;
}

.custom-btn {
    background-color: #ff7f3f; /* Button background color */
    color: #fff; /* Button text color */
    padding: 15px 40px 15px 30px; /* Adjust padding for button size */
    border: none; /* Remove border */
    border-radius: 50px; /* Rounded corners */
    font-size: 1rem; /* Text size */
    font-weight: bold; /* Text bold */
    text-transform: uppercase; /* Text uppercase */
    display: inline-block; /* Ensure it's displayed properly */
    text-align: center; /* Center text */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Button shadow */
    position: relative; /* To position the arrow */
    text-decoration: none; /* Remove underline */
    transition: all 0.3s ease; /* Smooth transition on hover */
    white-space: nowrap; /* Keep text on one line */
}

.custom-btn:hover {
    background-color: #ff9c62; /* Lighter background color on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    color: #fff; /* Ensure text remains white on hover */
    text-decoration: none; /* Remove underline */
}

.custom-btn i {
    margin-left: 10px; /* Adjust the space between text and arrow */
}

.custom-btn:hover::after {
    background-color: #ff9c62; /* Lighter background color on hover */
}

.contact-input {
    background-color: #ff7f3f;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 2px 20px; /* Adjusted padding to make the fields smaller */
    font-size: 0.85rem;
    width: 300px; /* Set fixed width for narrow inputs */
    margin: 10px auto; /* Add margin for spacing and centering */
    font-weight: lighter;
}

.contact-input::placeholder {
    color: white;
    opacity: 1;
}

.contact-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 127, 63, 0.5);
}

button.next-btn {
    background: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;

    margin-top: 20px;
}

.position-select {
    background-color: #4e2472;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}
ne
.position-select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(78, 36, 114, 0.5);
}

/* Styling for the dropdown's placeholder */
.position-select option[disabled] {
    color: #bbb; /* Gray color for the placeholder */
}
/* Hide default radio buttons */
/* Hide default radio buttons */
input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom radio button design */
.custom-radio {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #4e2472; /* Purple border */
    border-radius: 50%; /* Make it round */
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Inner dot when checked */
.custom-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #ff7f3f; /* Orange inner dot */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); /* Initially hidden */
    transition: transform 0.2s ease;
}

/* Show the inner dot when checked */
input[type="radio"]:checked + .custom-radio::after {
    transform: translate(-50%, -50%) scale(1); /* Show dot when checked */
}

/* Hover effect */
.custom-radio:hover {
    border-color: #ff7f3f; /* Orange border on hover */
}

/* Label styling */
label {
    font-size: 1.2rem; /* Larger text for readability */
    font-weight: normal;
    color: white; /* Default label color */
    cursor: pointer;
    padding-left: 10px; /* Space between the label and radio */
    display: inline-block;
    vertical-align: middle;
    transition: color 0.3s ease;
}

/* Change the color of the label when the radio button is selected */
input[type="radio"]:checked + .custom-radio + label {
    color: #4e2472 !important; /* Change to orange when selected */
}

/* Add margin to the radio container */
.radio-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center; /* Align custom radio and label */
}
