/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Page Heading */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 30px;
}

/* Application Cards */
.applications-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.application-box {
    width: 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-decoration: none;
    color: #1f2937;
}

.application-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Icons */
.application-box img {
    width: 80px;
    margin-bottom: 15px;
}

/* Button/Text */
.application-box h2 {
    font-size: 1.4rem;
    font-weight: bold;
}

/* Personal Application Page Styles */
nav {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
}

nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: bold;
}

nav span {
    color: #6b7280;
}

/* Secure SSL Section */
.personal-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ssl-badge {
    width: 100px;
}

.personal-info p {
    font-size: 1rem;
    color: #4b5563;
}

/* Applicant Information Form */
.application-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

.application-form h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
}

/* Form Labels */
label {
    /*font-size: 1rem;*/
    font-weight: bold;
    color: #374151;
    display: block;
   
}

.required {
    color: red;
}

/* Name Fields */
.name-fields {
    display: flex;
    gap: 10px;
}

input[type="text"] {
    /*padding: 5px 10px;*/
    border: 1px solid #d1d5db;
    border-radius: 5px;
}

/* Submit Button */
.submit-btn {
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }

    h1 {
        font-size: 2rem;
    }

    .applications-grid {
        flex-direction: column;
        align-items: center;
    }

    .application-box {
        width: 90%;
    }

    .personal-info {
        flex-direction: column;
        text-align: center;
    }

    .ssl-badge {
        width: 80px;
    }

    .name-fields {
        flex-direction: column;
    }

    .application-form {
        max-width: 100%;
        padding: 15px;
    }
}


input:invalid:focus {
  outline: 2px solid red;
}


input:invalid {
  pointer-events: auto; /* Ensure it's interactive */
  overflow: visible; /* Allow tooltip to appear */
}

.faqs {
    display: none;
    }