/*==============================================================
    GENIUNE.PK
    Product Verification Platform
    Version : 3.0
==============================================================*/

/*==============================================================
    Google Font
==============================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================================================
    CSS Variables
==============================================================*/

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --white: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
    --border: #e5e7eb;
    --background: #f4f8ff;
    --glass: rgba(255,255,255,.75);
    --shadow-sm: 0 5px 15px rgba(15,23,42,.08);
    --shadow-md: 0 12px 35px rgba(15,23,42,.10);
    --shadow-lg: 0 20px 60px rgba(15,23,42,.15);
    --radius: 18px;
    --transition: .35s ease;
}

/*==============================================================
    RESET
==============================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/*==============================================================
    COMMON
==============================================================*/

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    transition: var(--transition);
}

section {
    padding: 10px 0;
}

.container {
    max-width: 1320px;
}

/*==============================================================
    BACKGROUND
==============================================================*/

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../images/bg-pattern.svg");
    opacity: .08;
    pointer-events: none;
    z-index: -3;
}

/*==============================================================
    FLOATING CIRCLES
==============================================================*/

.bg-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: -2;
}

.bg-circle-1 {
    width: 380px;
    height: 380px;
    left: -120px;
    top: -120px;
    background: #4f8dfd;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    right: -80px;
    top: 200px;
    background: #38bdf8;
}

.bg-circle-3 {
    width: 350px;
    height: 350px;
    left: 40%;
    bottom: -140px;
    background: #60a5fa;
}

/*==============================================================
    GLASS CARD
==============================================================*/

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 35px;
    transition: var(--transition);
}

    .glass-card:hover {
        transform: translateY(-4px);
    }

/*==============================================================
    SECTION HEADING
==============================================================*/

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .section-heading h2 {
        font-size: 42px;
        font-weight: 700;
    }

    .section-heading p {
        margin-top: 15px;
        color: var(--text-light);
    }

/*==============================================================
    HEADER (BOOTSTRAP)
==============================================================*/

.verify-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 85px;
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.navbar-brand span {
    margin-left: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: .5px;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
}

    .navbar-nav .nav-link {
        color: #475569;
        font-size: 17px;
        font-weight: 500;
        padding: .75rem 1rem;
        transition: .3s;
    }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media(max-width:991.98px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .navbar-nav {
        margin-left: 0;
        text-align: center;
    }

        .navbar-nav .nav-link {
            padding: 12px;
        }
}
/*==============================================================
    HERO SECTION
==============================================================*/

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    padding: 25px 0 30px;
    background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

/*==============================================================
    BACKGROUND SHAPES
==============================================================*/

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -150px;
    background: radial-gradient(circle,rgba(37,99,235,.10),transparent 70%);
}

.hero-shape-2 {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -140px;
    background: radial-gradient(circle,rgba(22,163,74,.08),transparent 70%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/*==============================================================
    BADGE
==============================================================*/

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(37,99,235,.08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

    .hero-badge i {
        font-size: 16px;
    }

/*==============================================================
    TITLE
==============================================================*/

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 18px;
}

    .hero-title span {
        display: block;
        color: var(--primary);
    }

/*==============================================================
    DESCRIPTION
==============================================================*/

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 22px;
    max-width: 560px;
}

/*==============================================================
    FEATURES
==============================================================*/

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

    .hero-features div {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 30px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        color: #374151;
        box-shadow: 0 6px 18px rgba(0,0,0,.05);
        transition: .3s;
    }

        .hero-features div:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,.08);
        }

    .hero-features i {
        color: #16a34a;
        font-size: 16px;
    }

/*==============================================================
    BUTTONS
==============================================================*/

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

    .hero-buttons .btn {
        min-width: 190px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 16px;
    }

/*==============================================================
    STATS
==============================================================*/

.hero-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

    .hero-stats div {
        text-align: center;
        flex: 1;
    }

    .hero-stats h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
        color: var(--primary);
    }

    .hero-stats span {
        font-size: 14px;
        color: var(--text-light);
    }

/*==============================================================
    HERO IMAGE
==============================================================*/

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 35px rgba(37,99,235,.15));
}

/*==============================================================
    ANIMATION
==============================================================*/

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==============================================================
    RESPONSIVE
==============================================================*/

@media (max-width: 991.98px) {

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-main-image {
        max-width: 420px;
    }
}

/*==============================================================
    BACKGROUND SHAPES
==============================================================*/

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
}

.hero-shape-2 {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(34,197,94,.10), transparent 70%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/*==============================================================
    ANIMATION
==============================================================*/

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==============================================================
    RESPONSIVE
==============================================================*/

@media (max-width: 991.98px) {

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin-top: 15px;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
}


/*==============================================================
    VERIFICATION SECTION
==============================================================*/

.verification-section {
    position: relative;
    padding: 40px 0 70px;
}

/*==============================================================
    SECTION TITLE
==============================================================*/

.section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

    .section-title h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 5px;
    }

    .section-title p {
        margin: 0;
        color: var(--text-light);
    }

/*==============================================================
    ICON BOX
==============================================================*/

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    color: #fff;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(37,99,235,.25);
}

/*==============================================================
    FORM AREA
==============================================================*/

.form-area {
    margin-top: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

/*==============================================================
    FORM CONTROLS
==============================================================*/

.form-control {
    height: 60px;
    border: 2px solid #dbeafe;
    border-radius: 15px;
    background: #fff;
    padding-left: 18px;
    font-size: 16px;
    box-shadow: none;
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
    }

    .form-control::placeholder {
        color: #94a3b8;
    }

/*==============================================================
    DIVIDER
==============================================================*/

.divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
}

    .divider::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: #e5e7eb;
    }

    .divider span {
        position: relative;
        background: #fff;
        padding: 0 18px;
        color: #64748b;
        font-weight: 600;
    }

/*==============================================================
    BUTTONS
==============================================================*/

.btn {
    transition: var(--transition);
    border-radius: 15px;
    font-weight: 600;
}

.btn-lg {
    height: 58px;
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(37,99,235,.25);
    }

.btn-success:hover,
.btn-warning:hover,
.btn-outline-primary:hover,
.btn-outline-dark:hover {
    transform: translateY(-2px);
}

/*==============================================================
    CAPTCHA
==============================================================*/

.captcha-box {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #cbd5e1;
    border-radius: 18px;
    background: #fff;
    margin: 30px 0;
}

/*==============================================================
    SECURITY FOOTER
==============================================================*/

.security-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

    .security-footer div {
        color: #475569;
        font-size: 14px;
        font-weight: 500;
    }

    .security-footer i {
        color: var(--success);
        margin-right: 8px;
    }

/*==============================================================
    RESULT HEADER
==============================================================*/

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .result-header h3 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .result-header p {
        margin: 0;
        color: var(--text-light);
    }

/*==============================================================
    STATUS BADGE
==============================================================*/

.status-badge {
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

    .status-badge.success {
        background: linear-gradient(135deg,#16a34a,#22c55e);
    }

    .status-badge.warning {
        background: linear-gradient(135deg,#f59e0b,#fbbf24);
    }

    .status-badge.danger {
        background: linear-gradient(135deg,#dc2626,#ef4444);
    }

/*==============================================================
    RESULT BANNER
==============================================================*/

.result-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.banner-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff6ff;
    color: var(--primary);
    font-size: 36px;
}

.result-banner h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.result-banner p {
    margin: 0;
    color: var(--text-light);
}

/*==============================================================
    INFO CARDS
==============================================================*/

.info-card {
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .info-card label {
        display: block;
        color: var(--text-light);
        font-size: 13px;
        margin-bottom: 8px;
    }

    .info-card h6 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        margin: 0;
    }

/*==============================================================
    ACTION BUTTONS
==============================================================*/

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 30px;
}

    .action-buttons .btn {
        height: 56px;
        border-radius: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }


/*==============================================================
    STATISTICS SECTION
==============================================================*/

.statistics-section {
    padding: 80px 0;
}

.stats-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    padding: 35px 20px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(37,99,235,.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .stats-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,var(--primary),var(--primary-light));
    }

    .stats-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .stats-card h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .stats-card p {
        margin: 0;
        color: var(--text-light);
        font-weight: 500;
    }

/*==============================================================
    FOOTER
==============================================================*/

footer {
    background: #0f172a;
    color: #ffffff;
    padding: 35px 0;
    margin-top: 60px;
    text-align: center;
}

    footer a {
        color: #93c5fd;
        transition: var(--transition);
    }

        footer a:hover {
            color: #ffffff;
        }

/*==============================================================
    LOADING OVERLAY
==============================================================*/

.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

    .loading-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.loader {
    width: 70px;
    height: 70px;
    border: 7px solid #dbeafe;
    border-top: 7px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*==============================================================
    TOAST
==============================================================*/

.toast-message {
    position: fixed;
    top: 25px;
    right: 25px;
    min-width: 320px;
    padding: 18px 25px;
    border-radius: 15px;
    color: #ffffff;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: .35s;
    z-index: 99999;
}

    .toast-message.show {
        transform: translateX(0);
    }

.toast-success {
    background: #16a34a;
}

.toast-warning {
    background: #f59e0b;
}

.toast-danger {
    background: #dc2626;
}

.toast-info {
    background: #2563eb;
}

/*==============================================================
    BADGES
==============================================================*/

.badge-success {
    background: #dcfce7;
    color: #15803d;
}

.badge-warning {
    background: #fef3c7;
    color: #b45309;
}

.badge-danger {
    background: #fee2e2;
    color: #b91c1c;
}

/*==============================================================
    SHADOW HELPERS
==============================================================*/

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/*==============================================================
    TEXT HELPERS
==============================================================*/

.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

/*==============================================================
    BORDER RADIUS
==============================================================*/

.rounded-xl {
    border-radius: 18px !important;
}

.rounded-xxl {
    border-radius: 25px !important;
}

/*==============================================================
    TRANSITIONS
==============================================================*/

.transition {
    transition: var(--transition);
}

/*==============================================================
    IMAGE HELPERS
==============================================================*/

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

/*==============================================================
    HOVER EFFECT
==============================================================*/

.hover-up {
    transition: var(--transition);
}

    .hover-up:hover {
        transform: translateY(-6px);
    }

/*==============================================================
    GLASS EFFECT
==============================================================*/

.glass {
    background: rgba(255,255,255,.70);
    backdrop-filter: blur(15px);
}

/*==============================================================
    CUSTOM SCROLLBAR
==============================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #edf2ff;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/*==============================================================
    RESPONSIVE
==============================================================*/

/*==========================
    Large Desktop
==========================*/

@media (min-width:1600px) {

    .container {
        max-width: 1500px;
    }

    .hero-content h1 {
        font-size: 68px;
    }
}

/*==========================
    Desktop
==========================*/

@media (max-width:1400px) {

    .hero-content h1 {
        font-size: 50px;
    }

        .hero-content h1 span {
            font-size: 28px;
        }
}

/*==========================
    Laptop
==========================*/

@media (max-width:1200px) {

    .hero-content {
        padding-right: 0;
    }

        .hero-content h1 {
            font-size: 44px;
        }

    .glass-card {
        padding: 28px;
    }
}

/*==========================
    Tablet
==========================*/

@media (max-width:991.98px) {

    /* Hero */

    .hero-section {
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    /* Bootstrap Navbar */

    .navbar {
        min-height: 75px;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    .navbar-brand span {
        font-size: 22px;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
    }

        .navbar-nav .nav-link {
            padding: 14px;
            border-radius: 10px;
            margin: 5px 0;
        }

            .navbar-nav .nav-link:hover {
                background: #eff6ff;
            }

    .verification-section {
        padding-top: 40px;
    }

    .glass-card {
        margin-bottom: 30px;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/*==========================
    Mobile
==========================*/

@media (max-width:768px) {

    .hero-content h1 {
        font-size: 36px;
    }

        .hero-content h1 span {
            font-size: 22px;
        }

    .hero-content p {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

        .hero-features div {
            width: 100%;
            text-align: center;
        }

    .section-title {
        flex-direction: column;
        text-align: center;
    }

    .security-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .result-banner {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/*==========================
    Small Mobile
==========================*/

@media (max-width:576px) {

    section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

        .hero-content h1 span {
            font-size: 18px;
        }

    .logo {
        width: 42px;
        height: 42px;
    }

    .navbar-brand span {
        font-size: 20px;
    }

    .glass-card {
        padding: 20px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .section-title h3 {
        font-size: 24px;
    }

    .form-control {
        height: 55px;
    }

    .btn-lg {
        height: 54px;
    }

    .banner-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }

    .result-banner h4 {
        font-size: 22px;
    }

    .stats-card {
        margin-bottom: 20px;
    }
}

/*==========================
    Extra Small
==========================*/

@media (max-width:400px) {

    .hero-content h1 {
        font-size: 26px;
    }

        .hero-content h1 span {
            font-size: 16px;
        }

    .navbar-brand span {
        font-size: 18px;
    }

    .logo {
        width: 38px;
        height: 38px;
    }

    .status-badge {
        width: 100%;
        text-align: center;
    }

    .result-header {
        text-align: center;
        align-items: center;
    }
}


/*==============================================================
    INDUSTRY CARD
==============================================================*/

.industry-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 35px 20px;
    transition: .35s;
    height: 100%;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(37,99,235,.12);
    }

    .industry-card i {
        font-size: 52px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .industry-card h5 {
        margin: 0;
        font-weight: 600;
    }

/*==============================================================
    CALL TO ACTION
==============================================================*/

.cta-section {
    padding: 90px 0;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), #0f9d7a);
    border-radius: 28px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(37,99,235,.20);
}

    .cta-box .section-subtitle {
        display: inline-block;
        margin-bottom: 15px;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: .9;
    }

    .cta-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .cta-box p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
        opacity: .95;
    }

    .cta-box .btn {
        min-width: 220px;
        margin-bottom: 12px;
    }

@media (max-width: 991px) {

    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }

        .cta-box h2 {
            font-size: 32px;
        }
}



/*==============================================================
    About Page 
==============================================================*/
.badge-soft-primary {
    display: inline-block;
    padding: 8px 18px;
    background: #EAF3FF;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
}



/*==============================================================
    Partner Page
==============================================================*/


.partner-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .partner-form-wrapper .form-label {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .partner-form-wrapper .form-control {
        border-radius: 10px;
        min-height: 58px;
    }

    .partner-form-wrapper .input-group-text {
        background: #fff;
    }

.otp-input {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 12px;
}

#btnVerifyOTP {
    min-height: 58px;
    border-radius: 10px;
    font-size: 18px;
}

#btnResendOTP {
    text-decoration: none;
}

    #btnResendOTP:hover {
        text-decoration: underline;
    }

.partner-otp-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .partner-otp-box .form-label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #222;
    }

    .partner-otp-box .form-control {
        height: 48px;
        border-radius: 10px;
        border: 1px solid #dcdcdc;
        font-size: 15px;
    }

    .partner-otp-box .input-group-text {
        background: #ffffff;
        border: 1px solid #dcdcdc;
    }

    .partner-otp-box .form-control:focus {
        box-shadow: none;
        border-color: #0d6efd;
    }

.otp-input {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
}

#btnVerifyOTP {
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

#btnResendOTP {
    text-decoration: none;
    font-weight: 600;
}

    #btnResendOTP:hover {
        text-decoration: underline;
    }

.partner-otp-box small {
    font-size: 13px;
}

@media(max-width:768px) {

    .partner-otp-box {
        padding: 22px;
    }

    .otp-input {
        letter-spacing: 5px;
        font-size: 22px;
    }
}




/*==============================================================
    Partner Detail form
==============================================================*/

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
    }

.card {
    border-radius: 18px;
}

.btn-primary {
    border-radius: 12px;
    padding: 14px 36px;
}



/*==============================================================
    Partner Status Page
==============================================================*/

.partner-status-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .partner-status-card h2 {
        font-weight: 700;
    }

    .partner-status-card table th {
        width: 30%;
        background: #f8f9fa;
    }

    .partner-status-card .badge {
        font-size: .9rem;
        padding: 8px 14px;
    }
