* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.header h1 {
    color: #4285f4;
    font-size: 28px;
    font-weight: bold;
}

.header-link {
    color: #686868;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #4285f4;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-link:hover {
    background-color: #4285f4;
    color: white;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

/* Search Box */
.search-box {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.search-box h2 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #4285f4;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #1a73e8;
}

.search-btn {
    padding: 12px 30px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #1a73e8;
}

/* Result Container */
.result-container {
    width: 100%;
    max-width: 600px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Cards */
.status-card {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.status-card p {
    font-size: 16px;
    color: #424242;
    margin-bottom: 8px;
    font-weight: 500;
}

.aadhar-info {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

/* Status Message */
.status-message {
    font-size: 16px;
    color: #212121;
    margin: 20px 0;
    line-height: 1.8;
    font-weight: 600;
}

/* Action Section */
.action-section {
    margin: 25px 0;
}

.visit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(66, 133, 244, 0.3);
}

.visit-btn:hover {
    background-color: #1a73e8;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

/* Contact Information */
.contact-info {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #4285f4;
}

.contact-info p {
    font-size: 15px;
    color: #212121;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.contact-info strong {
    color: #000;
    font-weight: 700;
}

/* Helpline Information */
.helpline-info {
    margin-top: 25px;
    padding: 20px;
    background-color: #fff3e0;
    border-radius: 5px;
    border-left: 3px solid #ff9800;
}

.helpline-info p {
    font-size: 15px;
    color: #212121;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

.helpline-info strong {
    color: #000;
    font-weight: 700;
    font-size: 17px;
}

/* Status Types */
.status-card.activated {
    border-left: 5px solid #4caf50;
}

.status-card.activated .status-icon {
    color: #4caf50;
}

.status-card.activated h3 {
    color: #4caf50;
}

.status-card.pending {
    border-left: 5px solid #ff9800;
}

.status-card.pending .status-icon {
    color: #ff9800;
}

.status-card.pending h3 {
    color: #ff9800;
}

.status-card.declined {
    border-left: 5px solid #f44336;
    background-color: #f5f5f5;
}

.status-card.declined .status-icon {
    color: #f44336;
}

.status-card.declined h3 {
    color: #f44336;
}

.status-card.not-found {
    border-left: 5px solid #9e9e9e;
    background-color: #f5f5f5;
}

.status-card.not-found .status-icon {
    color: #9e9e9e;
}

.status-card.not-found h3 {
    color: #9e9e9e;
}

.status-card.error {
    border-left: 5px solid #f44336;
}

.status-card.error h3 {
    color: #f44336;
}

/* Mobile Contact Bar */
.mobile-contact {
    display: none;
    background: #4285f4;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-contact p {
    margin-bottom: 10px;
}

.apply-btn {
    background: white;
    color: #4285f4;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #f5f5f5;
}

/* Blinking Animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

.blink {
    animation: blink 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 22px;
    }

    .header-link {
        font-size: 14px;
        padding: 8px 15px;
    }

    .search-box {
        padding: 25px;
    }

    .search-box h2 {
        font-size: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .status-card {
        padding: 20px;
    }

    .status-card h3 {
        font-size: 20px;
    }

    .status-card p {
        font-size: 15px;
    }

    .status-icon {
        font-size: 36px;
    }

    .status-message {
        font-size: 15px;
    }

    .visit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .helpline-info {
        padding: 15px;
    }

    .helpline-info p {
        font-size: 14px;
    }

    .helpline-info strong {
        font-size: 16px;
    }
}
