Css code

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


:root {

    --primary-blue: #3498db;

    --primary-dark: #2980b9;

    --secondary-blue: #2c3e50;

    --accent-green: #27ae60;

    --accent-red: #e74c3c;

    --accent-orange: #f39c12;

    --light-gray: #f5f7fa;

    --medium-gray: #ecf0f1;

    --dark-gray: #7f8c8d;

    --text-dark: #2c3e50;

    --text-light: #ffffff;

    --shadow-light: rgba(0, 0, 0, 0.1);

    --shadow-medium: rgba(0, 0, 0, 0.15);

    --border-radius: 12px;

    --transition: all 0.3s ease;

}


body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background: linear-gradient(135deg, var(--light-gray) 0%, #c3cfe2 100%);

    min-height: 100vh;

    padding: 20px;

    color: var(--text-dark);

    line-height: 1.6;

}


.container {

    max-width: 1400px;

    margin: 0 auto;

}


/* ===== HEADER STYLES ===== */

header {

    background: linear-gradient(135deg, var(--secondary-blue), #34495e);

    color: var(--text-light);

    padding: 30px 40px;

    border-radius: var(--border-radius);

    margin-bottom: 40px;

    box-shadow: 0 10px 30px var(--shadow-light);

}


.logo {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 15px;

}


.logo i {

    font-size: 2.5rem;

    color: var(--primary-blue);

    background: var(--text-light);

    padding: 15px;

    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);

}


.logo h1 {

    font-size: 2.5rem;

    font-weight: 700;

    background: linear-gradient(135deg, var(--text-light), #bdc3c7);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.tagline {

    color: #bdc3c7;

    font-size: 1.1rem;

    margin-bottom: 25px;

    max-width: 600px;

}


.progress-container {

    background: rgba(255, 255, 255, 0.1);

    padding: 20px;

    border-radius: 10px;

    backdrop-filter: blur(10px);

}


.progress-info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 0.95rem;

}


.status-online {

    color: var(--accent-green);

    font-weight: 600;

}


.progress-bar {

    height: 8px;

    background: rgba(255, 255, 255, 0.2);

    border-radius: 4px;

    overflow: hidden;

    margin-bottom: 15px;

}


.progress-fill {

    height: 100%;

    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));

    width: 0%;

    transition: width 0.5s ease;

    border-radius: 4px;

}


.verification-count {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1rem;

}


.verification-count i {

    color: var(--accent-green);

    font-size: 1.2rem;

}


/* ===== VERIFICATION CARDS ===== */

.verification-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));

    gap: 30px;

    margin-bottom: 50px;

}


.verification-card {

    background: var(--text-light);

    border-radius: var(--border-radius);

    padding: 30px;

    box-shadow: 0 10px 30px var(--shadow-light);

    transition: var(--transition);

    position: relative;

    overflow: hidden;

    border: 1px solid var(--medium-gray);

}


.verification-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px var(--shadow-medium);

}


/* Card Color Themes */

.card-pan {

    border-top: 4px solid var(--primary-blue);

}


.card-face {

    border-top: 4px solid var(--accent-red);

}


.card-bank {

    border-top: 4px solid var(--accent-green);

}


.card-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 20px;

}


.card-icon {

    width: 60px;

    height: 60px;

    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.8rem;

    color: var(--text-light);

    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);

}


.card-face .card-icon {

    background: linear-gradient(135deg, var(--accent-red), #c0392b);

}


.card-bank .card-icon {

    background: linear-gradient(135deg, var(--accent-green), #229954);

}


.card-badge {

    display: flex;

    gap: 8px;

}


.badge {

    padding: 6px 12px;

    border-radius: 20px;

    font-size: 0.75rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}


.badge-success {

    background: rgba(39, 174, 96, 0.1);

    color: var(--accent-green);

    border: 1px solid rgba(39, 174, 96, 0.3);

}


.badge-info {

    background: rgba(52, 152, 219, 0.1);

    color: var(--primary-blue);

    border: 1px solid rgba(52, 152, 219, 0.3);

}


.badge-danger {

    background: rgba(231, 76, 60, 0.1);

    color: var(--accent-red);

    border: 1px solid rgba(231, 76, 60, 0.3);

}


.badge-warning {

    background: rgba(243, 156, 18, 0.1);

    color: var(--accent-orange);

    border: 1px solid rgba(243, 156, 18, 0.3);

}


.card-title {

    font-size: 1.6rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: var(--text-dark);

}


.card-description {

    color: var(--dark-gray);

    margin-bottom: 25px;

    line-height: 1.7;

}


/* Process Steps */

.process-steps {

    background: var(--light-gray);

    border-radius: 10px;

    padding: 20px;

    margin: 25px 0;

}


.step {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px 15px;

    margin: 8px 0;

    background: var(--text-light);

    border-radius: 8px;

    border-left: 4px solid var(--primary-blue);

    transition: var(--transition);

}


.step:hover {

    transform: translateX(5px);

    box-shadow: 0 5px 15px var(--shadow-light);

}


.step-number {

    width: 30px;

    height: 30px;

    background: var(--primary-blue);

    color: var(--text-light);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 600;

    font-size: 0.9rem;

}


.card-face .step {

    border-left-color: var(--accent-red);

}


.card-face .step-number {

    background: var(--accent-red);

}


.card-bank .step {

    border-left-color: var(--accent-green);

}


.card-bank .step-number {

    background: var(--accent-green);

}


.step-text {

    font-weight: 500;

    color: var(--text-dark);

}


/* Card Stats */

.card-stats {

    display: flex;

    gap: 20px;

    margin: 20px 0;

}


.stat {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--dark-gray);

    font-size: 0.9rem;

}


.stat i {

    color: var(--primary-blue);

}


.card-face .stat i {

    color: var(--accent-red);

}


.card-bank .stat i {

    color: var(--accent-green);

}


/* Buttons */

.btn {

    padding: 16px 35px;

    font-size: 1rem;

    font-weight: 600;

    border-radius: 10px;

    cursor: pointer;

    border: none;

    transition: var(--transition);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 20px;

}


.btn-primary {

    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));

    color: var(--text-light);

}


.btn-primary:hover {

    background: linear-gradient(135deg, var(--primary-dark), #1f639b);

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);

}


.btn-secondary {

    background: var(--medium-gray);

    color: var(--text-dark);

    border: 1px solid #ddd;

}


.btn-secondary:hover {

    background: #e0e0e0;

    transform: translateY(-2px);

}


/* Tracking Info */

.tracking-info {

    display: flex;

    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--medium-gray);

}


.tracking-id, .tracking-time, .tracking-status {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 0.9rem;

    color: var(--dark-gray);

}


.tracking-id i, .tracking-time i, .tracking-status i {

    font-size: 1rem;

}


.tracking-info strong {

    color: var(--text-dark);

    font-weight: 600;

}


/* ===== DASHBOARD SECTION ===== */

.dashboard-section {

    background: var(--text-light);

    border-radius: var(--border-radius);

    padding: 40px;

    box-shadow: 0 10px 30px var(--shadow-light);

    margin-bottom: 40px;

}


.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}


.dashboard-header h2 {

    font-size: 2rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 15px;

}


.dashboard-header h2 i {

    color: var(--primary-blue);

}


.dashboard-controls {

    display: flex;

    gap: 15px;

}


.dashboard-controls .btn {

    width: auto;

    padding: 12px 25px;

    margin: 0;

}


/* Stats Grid */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;

}


.stat-card {

    background: var(--light-gray);

    border-radius: 12px;

    padding: 25px;

    transition: var(--transition);

    border: 1px solid var(--medium-gray);

}


.stat-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px var(--shadow-light);

}


.stat-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

}


.stat-icon {

    font-size: 2rem;

    color: var(--primary-blue);

    background: var(--text-light);

    padding: 15px;

    border-radius: 12px;

    box-shadow: 0 5px 15px var(--shadow-light);

}


.stat-trend {

    font-size: 0.9rem;

    font-weight: 600;

    padding: 5px 12px;

    border-radius: 20px;

}


.stat-trend.up {

    background: rgba(39, 174, 96, 0.1);

    color: var(--accent-green);

}


.stat-value {

    font-size: 2.8rem;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 10px;

    line-height: 1;

}


.stat-label {

    color: var(--dark-gray);

    font-size: 1rem;

    margin-bottom: 15px;

}


.stat-details {

    display: flex;

    justify-content: space-between;

    font-size: 0.9rem;

    color: var(--dark-gray);

}


.stat-details strong {

    color: var(--text-dark);

    font-weight: 600;

}


/* ===== QUICK ACTIONS ===== */

.quick-actions {

    background: var(--text-light);

    border-radius: var(--border-radius);

    padding: 30px;

    box-shadow: 0 10px 30px var(--shadow-light);

    margin-bottom: 40px;

}


.quick-actions h3 {

    font-size: 1.8rem;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-dark);

}


.quick-actions h3 i {

    color: var(--accent-orange);

}


.action-buttons {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 20px;

}


.action-btn {

    background: var(--light-gray);

    border: 2px solid var(--medium-gray);

    border-radius: 10px;

    padding: 25px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    cursor: pointer;

    transition: var(--transition);

}


.action-btn:hover {

    background: var(--primary-blue);

    border-color: var(--primary-blue);

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);

}


.action-btn:hover i,

.action-btn:hover span {

    color: var(--text-light);

}


.action-btn i {

    font-size: 2rem;

    color: var(--primary-blue);

    transition: var(--transition);

}


.action-btn span {

    font-weight: 600;

    color: var(--text-dark);

    transition: var(--transition);

}


/* ===== FOOTER ===== */

footer {

    background: var(--secondary-blue);

    color: var(--text-light);

    border-radius: var(--border-radius);

    overflow: hidden;

}


.footer-content {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    padding: 40px;

}


.footer-section h4 {

    font-size: 1.2rem;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-section h4 i {

    color: var(--primary-blue);

}


.footer-section p {

    color: #bdc3c7;

    line-height: 1.6;

}


.uptime-display {

    display: flex;

    align-items: center;

    gap: 15px;

}


.uptime-bar {

    flex: 1;

    height: 8px;

    background: rgba(255, 255, 255, 0.2);

    border-radius: 4px;

    overflow: hidden;

}


.uptime-fill {

    height: 100%;

    background: linear-gradient(90deg, var(--accent-green), #2ecc71);

    border-radius: 4px;

}


.copyright {

    text-align: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.2);

    color: #95a5a6;

    font-size: 0.9rem;

}


/* ===== MODAL STYLES ===== */

.modal {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.7);

    z-index: 1000;

    align-items: center;

    justify-content: center;

    backdrop-filter: blur(5px);

}


.modal-content {

    background: var(--text-light);

    border-radius: var(--border-radius);

    width: 90%;

    max-width: 500px;

    position: relative;

    animation: modalSlideIn 0.3s ease;

}


@keyframes modalSlideIn {

    from {

        opacity: 0;

        transform: translateY(-50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.modal-close {

    position: absolute;

    top: 20px;

    right: 20px;

    background: none;

    border: none;

    font-size: 1.5rem;

    color: var(--dark-gray);

    cursor: pointer;

    transition: var(--transition);

    padding: 5px;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.modal-close:hover {

    background: var(--light-gray);

    color: var(--text-dark);

}


.modal-header {

    padding: 40px 40px 20px;

    text-align: center;

    border-bottom: 1px solid var(--medium-gray);

}


.modal-header i {

    font-size: 3rem;

    color: var(--primary-blue);

    margin-bottom: 20px;

}


.modal-header h3 {

    font-size: 1.8rem;

    color: var(--text-dark);

}


.modal-body {

    padding: 30px 40px;

}


#modal-details {

    margin-bottom: 30px;

}


.modal-loader {

    text-align: center;

}


.loader {

    width: 60px;

    height: 60px;

    border: 5px solid var(--medium-gray);

    border-top: 5px solid var(--primary-blue);

    border-radius: 50%;

    animation: spin 1s linear infinite;

    margin: 0 auto 20px;

}


@keyframes spin {

    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }

}


.modal-footer {

    padding: 20px 40px;

    border-top: 1px solid var(--medium-gray);

    display: flex;

    gap: 15px;

    justify-content: flex-end;

}


.modal-footer .btn {

    width: auto;

    margin: 0;

}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {

    .verification-grid {

        grid-template-columns: 1fr;

    }

    

    .stats-grid {

        grid-template-columns: 1fr;

    }

    

    .action-buttons {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .dashboard-header {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

    

    .logo {

        flex-direction: column;

        text-align: center;

    }

    

    header, .dashboard-section, .quick-actions {

        padding: 25px;

    }

    

    .footer-content {

        grid-template-columns: 1fr;

        text-align: center;

    }

    

    .footer-section h4 {

        justify-content: center;

    }

    

    .progress-info {

        flex-direction: column;

        gap: 10px;

    }

    

    .tracking-info {

        flex-direction: column;

        gap: 15px;

    }

}


@media (max-width: 480px) {

    .container {

        padding: 10px;

    }

    

    .action-buttons {

        grid-template-columns: 1fr;

    }

    

    .verification-card {

        padding: 20px;

    }

    

    .btn {

        padding: 14px 25px;

    }

    

    .modal-content {

        width: 95%;

    }

}


/* ===== UTILITY CLASSES ===== */

.hidden {

    display: none !important;

}


.fade-in {

    animation: fadeIn 0.5s ease;

}


@keyframes fadeIn {

    from { opacity: 0; }

    to { opacity: 1; }

}


/* Smooth Scroll */

html {

    scroll-behavior: smooth;

Post a Comment (0)
Previous Post Next Post