.verification-section {
    padding: 60px 20px;
    background: #ffffff;
}

.verification-box {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 60px 70px;
    border-radius: 20px;
    border: 3px solid #e0e0e0;
}

.verification-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.verification-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.verification-box form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.verification-box input {
    width: 100%;
    padding: 22px 30px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 18px;
    outline: none;
    background: #fff;
}

.verification-box input:focus {
    border-color: #093685;
}

.verification-box button {
    width: 200px;
    padding: 18px;
    border-radius: 50px;
    border: none;
    background: #052D70;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.verification-box button:hover {
    background: #74AF14;
}




/* Result Container */
.result-box {
    max-width: 900px;
    margin: 10px auto 100px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
}

/* Table */
.cert-table {
    width: 100%;
    padding:100px;
    border-collapse: collapse;
    font-size: 15px;
}

/* Left Label Column */
.cert-table .label {
    width: 30%;
    background: #4f4f50;   /* Dark Blue Grey */
    color: #fff;
    padding: 14px;
    font-weight: 600;
    border: 1px solid #ffffff;
}

/* Right Value Column */
.cert-table .value {
    width: 70%;
    background: #052D70;   /* Main Blue */
    color: #fff;
    padding: 14px;
    border: 1px solid #ffffff;
}

/* Scope text wrap */
.cert-table .value {
    word-break: break-word;
}

/* No Record */
.no-record {
    text-align: center;
    font-weight: 600;
    color: red;
    margin-top: 20px;
}



/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

.verification-section{
    padding:40px 15px;
}

/* verification box */
.verification-box{
    max-width:95%;
    padding:30px 20px;
    border-radius:14px;
    text-align:center;
}

/* heading */
.verification-box h2{
    font-size:26px;
}

/* paragraph */
.verification-box p{
    font-size:14px;
    margin-bottom:20px;
}

/* input */
.verification-box input{
    padding:14px 0 14px 5px;
    font-size:14px;
    border-radius:30px;
    margin-right: 30px;
}

/* button */
.verification-box button{
    width:120px;
    padding:10px;
    font-size:13px;
    margin:auto;
}

/* result box */
.result-box{
    max-width:95%;
    margin:20px auto 60px auto;
}

/* table */
.cert-table{
    font-size:13px;
}

/* table cells */
.cert-table .label,
.cert-table .value{
    padding:10px;
}

/* label column */
.cert-table .label{
    width:40%;
}

/* value column */
.cert-table .value{
    width:60%;
}

}



