/* Islamabad Theme Colors */
:root {
    --primary-blue: #003B73;
    --primary-blue-dark: #002a50;
    --panel-bg: #ffffff;
}

/* Header */
.header-section {
    padding: 35px 20px;
    background: var(--primary-blue);
    text-align: center;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 180px;     /* Increased size */
    height: auto;     /* Keeps proper proportions */
    border-radius: 0; /* Rectangle shape */
    border: none;
}

/* Title */
.header-title {
    margin-top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

/* Verification Panel (Islamabad style card) */
.verification-panel {
    margin: 35px auto 10px auto;
    background: var(--panel-bg);
    padding: 25px;
    width: 380px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.panel-title {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.verification-panel input {
    width: 92%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #bbb;
    margin-bottom: 15px;
    font-size: 16px;
}

.verification-panel button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: var(--primary-blue);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

.verification-panel button:hover {
    background: var(--primary-blue-dark);
}

/* Hero text */
.hero {
    padding: 45px 20px;
    background: #f2f7ff;
}

.hero-content p {
    max-width: 900px;
    margin: auto;
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    color: #003B73;
}

/* Footer */
.footer-box {
    background: #000;
    padding: 22px;
    text-align: center;
}

.footer-box p {
    color: white;
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .verification-panel {
        width: 90%;
    }

    .header-title {
        font-size: 26px;
    }
}
