*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:#f4f7fc;
    color:#1e293b;
    min-height:100vh;
}

/* HEADER */

.header{
    background:#ffffff;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:100;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
    width:  ;
}

.logo-image img{
    width:60px;
    height:60px;
    object-fit:cover
}

.logo-area h2{
    font-size:22px;
}

.logo-area p{
    color:#64748b;
    font-size:14px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

/* VERIFY PAGE */

#verifyPage{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.verify-container{
    width:100%;
    max-width:900px;
}

.verify-card{
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    text-align:center;
}

.icon-box{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
}

.verify-card h1{
    margin-top:25px;
    font-size:40px;
}

.verify-card p{
    margin-top:15px;
    color:#64748b;
    line-height:1.6;
}

.input-group{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.input-group input{
    flex:1;
    padding:16px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.input-group input:focus{
    border-color:#2563eb;
}

.input-group button{
    padding:16px 30px;
    border:none;
    border-radius:12px;
    background:#2563eb;
    color:white;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.input-group button:hover{
    background:#1d4ed8;
}

#errorMessage{
    margin-top:20px;
    color:#dc2626;
    font-weight:600;
}

/* RESULT PAGE */

#resultPage{
    display:none;
    padding:40px 20px;
}

.result-container{
    max-width:1200px;
    margin:auto;
}

/* VERIFIED BANNER */

.verification-banner{
    background:#ecfdf5;
    border:1px solid #bbf7d0;
    border-radius:20px;
    text-align:center;
    padding:40px;
    margin-bottom:25px;
}

.verify-icon{
    font-size:70px;
    color:#16a34a;
}

.verification-banner h1{
    margin-top:15px;
    color:#15803d;
    font-size:38px;
}

.verification-banner p{
    margin-top:10px;
    color:#166534;
}

/* CARDS */

.card{
    background:white;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.card h2{
    margin-bottom:25px;
    color:#0f172a;
}

/* GRIDS */

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.info-box{
    background:#f8fafc;
    padding:20px;
    border-radius:14px;
}

.info-box span{
    display:block;
    color:#64748b;
    margin-bottom:10px;
    font-size:14px;
}

.info-box strong{
    font-size:18px;
}

.green-text{
    color:#16a34a;
}

/* PERFORMANCE */

.performance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.perf-box{
    background:#f8fafc;
    padding:25px;
    border-radius:14px;
    text-align:center;
}

.perf-box h3{
    color:#2563eb;
    margin-bottom:8px;
}

.rating-section{
    margin-top:30px;
}

.rating-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-weight:600;
}

.progress{
    width:100%;
    height:14px;
    background:#e2e8f0;
    border-radius:20px;
    overflow:hidden;
}

#progressFill{
    width:94%;
    height:100%;
    background:linear-gradient(
        90deg,
        #22c55e,
        #16a34a
    );
}

/* VERIFIED BY */

.verified-by{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.verified-by h3{
    color:#2563eb;
}

.verified-by p{
    color:#64748b;
}

/* FOOTER BOX */

.verification-footer{
    text-align:center;
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.verification-footer p{
    margin:8px 0;
}

/* FOOTER */

footer{
    margin-top:50px;
    background:white;
    padding:30px;
    text-align:center;
    color:#64748b;
}

footer h3{
    color:#0f172a;
    margin-bottom:10px;
}

/* MOBILE */

@media(max-width:900px){

    .grid-3{
        grid-template-columns:1fr;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .performance-grid{
        grid-template-columns:1fr 1fr;
    }

    .verified-by{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .verify-card{
        padding:30px 20px;
    }

    .verify-card h1{
        font-size:30px;
    }

    .input-group{
        flex-direction:column;
    }

    .input-group button{
        width:100%;
    }

    .verification-banner h1{
        font-size:28px;
    }

    .performance-grid{
        grid-template-columns:1fr;
    }
}