body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
    margin: 20px auto;
    overflow: hidden;
}
.card-header {
    background-color: #002a5c;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}
.ssa-logo {
    background-color: #fff;
    color: #002a5c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}
.card-header h1 {
    margin: 0 0 5px 0;
    font-size: 20px;
}
.card-header p {
    margin: 0;
    font-size: 13px;
    color: #e0e0e0;
}
.card-body {
    padding: 30px;
}
.card-body h2 {
    font-size: 22px;
    color: #002a5c;
    text-align: center;
    margin-top: 0;
    margin-bottom: 12px;
}
.card-body > p {
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}
.security-advisory {
    background-color: #fffaf0;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    border-top: 1px solid #ffeeba;
    border-right: 1px solid #ffeeba;
    border-bottom: 1px solid #ffeeba;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.verification-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}
.answer-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}
.action-button {
    background-color: #70889f;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.action-button:hover {
    background-color: #5c7287;
}
.card-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    font-size: 11px;
    color: #555;
    border-top: 1px solid #eee;
    line-height: 1.4;
}
.card-footer p {
    margin: 3px 0;
}
.download-section {
    display: none;
}
.download-inner-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
/* Progress Bar Container background */
.progress-bar-container {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 22px;
    width: 100%;
    margin: 15px 0;
}

/* Progress Bar ka color Green karne ke liye */
.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #27ae60; /* Ye green color set karega */
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
    transition: width 0.1s ease-in-out;
    border-radius: 10px 0 0 10px;
}

/* Success Checkmark Icon Style (Page 3 ke liye) */
.success-icon {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: white;
    font-size: 28px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    text-align: center;
}
.download-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #555;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 5px;
}

.refresh-btn {
    background: none;
    border: none;
    color: #0060df;
    cursor: pointer;
    font-size: 16px;
}

/* Mobile Restriction Box Styling */
.mobile-restriction {
    display: none; 
    border: 2px solid #e74c3c;
    border-radius: 8px;
    text-align: center;
    background-color: #fff;
}
.mobile-icon-box {
    font-size: 40px;
    margin-bottom: 10px;
}
.mobile-restriction h2 {
    color: #c0392b;
    font-size: 20px;
}
.mobile-restriction p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Media Query for Mobile Phones */
@media screen and (max-width: 768px) {
    #page1 {
        display: none !important;
    }
    .mobile-restriction {
        display: block !important;
    }
}

@keyframes blink {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    overflow: hidden;
}

.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}