:root {
    --navy: #0b1f4a;
    --navy-deep: #071532;
    --navy-soft: #132a5c;
    --gold: #f0c419;
    --gold-dark: #d4a80a;
    --saffron: #ff9933;
    --india-green: #138808;
    --ink: #13213a;
    --muted: #5b6b86;
    --line: rgba(11, 31, 74, 0.12);
    --card: #ffffff;
    --bg: #f5f7fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(7, 21, 50, 0.04);
}

.site-nav {
    padding: 0.75rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        conic-gradient(from 210deg, var(--saffron) 0 33%, #fff 33% 66%, var(--india-green) 66% 100%);
    box-shadow: inset 0 0 0 3px #fff, 0 8px 18px rgba(11, 31, 74, 0.18);
    position: relative;
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: var(--navy);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-text small {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
}

.site-nav .nav-link {
    color: #0b1f4a !important;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.55rem 0.85rem !important;
    border-radius: 999px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #0b1f4a !important;
    background: rgba(240, 196, 25, 0.22) !important;
}

.btn-nav-login,
a.btn-nav-login {
    background: #0b1f4a !important;
    background-image: none !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 0.55rem 1.15rem !important;
    font-weight: 700 !important;
    border: 1px solid #0b1f4a !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none !important;
}

.btn-nav-login:hover,
a.btn-nav-login:hover {
    background: #071532 !important;
    color: #ffffff !important;
}

.navbar-toggler {
    border: 1px solid #0b1f4a !important;
    padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(11, 31, 74, 0.15) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 31, 74, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.brand-lockup,
.brand-lockup strong,
.brand-text strong {
    color: #0b1f4a !important;
}

.brand-text small {
    color: #5b6b86 !important;
}

/* Outline / gold buttons stay visible on light pages */
.btn-outline-primary,
a.btn-outline-primary {
    background: #ffffff !important;
    border: 1px solid #0b1f4a !important;
    color: #0b1f4a !important;
}

.btn-outline-primary:hover,
a.btn-outline-primary:hover {
    background: #0b1f4a !important;
    color: #ffffff !important;
}

.btn-outline-secondary,
a.btn-outline-secondary {
    background: #ffffff !important;
    border: 1px solid #64748b !important;
    color: #334155 !important;
}

.btn-gold,
a.btn-gold,
.btn-continue-gold {
    background: #f0c419 !important;
    background-image: none !important;
    border: 1px solid #d4a80a !important;
    color: #0b1f4a !important;
    font-weight: 800 !important;
}

.btn-gold:hover,
a.btn-gold:hover,
.btn-continue-gold:hover {
    background: #d4a80a !important;
    color: #0b1f4a !important;
}

.field-icon input::placeholder {
    color: #64748b !important;
    opacity: 1;
}

.about-more-link,
a.about-more-link {
    color: #0b1f4a !important;
    font-weight: 800;
}

/* Hero */
.hero-campaign {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071532 0%, #0b1f4a 48%, #16356f 100%);
    color: #fff;
}

.hero-campaign::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(240, 196, 25, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(7, 21, 50, 0.88) 0%, rgba(7, 21, 50, 0.55) 42%, rgba(7, 21, 50, 0.25) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: 3rem 0 4rem;
}

.hero-photo-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-kicker {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.hero-name {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 0.98;
    font-weight: 800;
    margin: 0 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.hero-copy {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.85rem 0.7rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

.hero-feature .icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.55rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(240, 196, 25, 0.18);
    color: var(--gold);
    font-weight: 800;
}

.hero-feature span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 600;
}

.register-card {
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.register-card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff;
    padding: 1.15rem 1.35rem;
}

.register-card-head h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.register-card-body {
    padding: 1.35rem;
}

.form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: #dbe3f0;
    padding: 0.7rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(240, 196, 25, 0.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #ffd84d);
    color: var(--navy-deep);
    border: 0;
    font-weight: 800;
    border-radius: 12px;
}

.btn-gold:hover,
.btn-gold:focus {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy-deep);
}

.btn-primary {
    background: #0b1f4a;
    background-image: none;
    border: 1px solid #0b1f4a;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #071532;
    background-image: none;
    border-color: #071532;
    color: #ffffff;
}

.btn-outline-primary {
    border-color: #0b1f4a;
    color: #0b1f4a;
    background: #ffffff;
}

.btn-outline-primary:hover {
    background: #0b1f4a;
    border-color: #0b1f4a;
    color: #ffffff;
}

.btn-whatsapp,
a.btn-whatsapp {
    background: #128c7e !important;
    border: 1px solid #075e54 !important;
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
}

.btn-whatsapp:hover,
a.btn-whatsapp:hover {
    background: #075e54 !important;
    color: #ffffff !important;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.trust-row a {
    color: var(--navy);
    font-weight: 700;
}

/* Value bar */
.value-bar {
    background: var(--navy-deep);
    color: #fff;
    padding: 2rem 0;
}

.value-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.value-item .dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(240, 196, 25, 0.16);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    flex-shrink: 0;
}

.value-item h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.value-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-head {
    margin-bottom: 2rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(240, 196, 25, 0.16);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.6rem;
}

.section-sub {
    color: var(--muted);
    max-width: 42rem;
    margin: 0;
    line-height: 1.7;
}

.about-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(160deg, var(--saffron), #fff 45%, var(--india-green));
    box-shadow: 0 24px 50px rgba(11, 31, 74, 0.14);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-copy p {
    color: #3c4b66;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-box {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 1.35rem 1.5rem;
    position: relative;
    margin: 1.5rem 0;
}

.quote-box::before {
    content: '“';
    position: absolute;
    top: -0.2rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 800;
}

.quote-box p {
    margin: 0;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
}

.resolve-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(11, 31, 74, 0.05);
}

.resolve-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.resolve-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.resolve-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #3c4b66;
    line-height: 1.45;
}

.resolve-list .num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(11, 31, 74, 0.08);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.slogan-ribbon {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--gold), #ffe680);
    color: var(--navy-deep);
    font-weight: 800;
    padding: 0.55rem 1rem;
    border-radius: 999px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.work-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(11, 31, 74, 0.06);
    transition: transform 0.2s ease;
}

.work-card:hover {
    transform: translateY(-4px);
}

.work-card-media {
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, rgba(11, 31, 74, 0.08), rgba(240, 196, 25, 0.18)),
        #e8eef8;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 700;
}

.work-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card-body {
    background: var(--navy);
    color: #fff;
    padding: 0.9rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.stats-bar {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
    color: #fff;
    padding: 2.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.glass-card,
.page-shell .glass-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(11, 31, 74, 0.08);
}

.page-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff;
    padding: 3.5rem 0 3rem;
}

.page-hero h1 {
    margin: 0 0 0.5rem;
    font-weight: 800;
}

.page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 40rem;
}

.empty-panel {
    background: #fff;
    border: 1px dashed #c9d4e8;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    color: var(--muted);
}

.help-strip {
    background: #fff8df;
    border: 1px solid rgba(240, 196, 25, 0.45);
    border-radius: 16px;
    padding: 1rem 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.help-strip strong {
    color: var(--navy);
}

.btn-help-wa,
.btn-whatsapp,
a.btn-whatsapp {
    background: #128c7e !important;
    color: #ffffff !important;
    border: 1px solid #075e54 !important;
    border-radius: 10px;
    font-weight: 700;
}

.btn-help-wa:hover,
.btn-whatsapp:hover,
a.btn-whatsapp:hover {
    background: #075e54 !important;
    color: #ffffff !important;
}

.reference-guide {
    background: linear-gradient(135deg, rgba(11, 31, 74, 0.04), rgba(240, 196, 25, 0.12));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
    margin-bottom: 1.25rem;
}

.reference-guide h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.55rem;
}

.reference-guide ol {
    margin: 0;
    padding-left: 1.15rem;
    color: #3c4b66;
}

.reference-guide li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.reference-item {
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.9);
}

.user-dashboard-hero,
.user-profile-card,
.user-table-card {
    background: #fff;
    border: 1px solid var(--line);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(11, 31, 74, 0.18);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.lang-switch a {
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.2;
}

.lang-switch a.active {
    background: var(--navy);
    color: #fff;
}

.photo-capture-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0.9rem 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
    border: 1px dashed rgba(11, 31, 74, 0.25);
    background: rgba(248, 250, 252, 0.95);
    max-width: 100%;
    overflow: hidden;
}

.photo-capture-preview {
    width: 112px;
    height: 112px;
    max-width: 112px;
    max-height: 112px;
    border-radius: 50%;
    overflow: hidden;
    background: #0b1f4a;
    border: 3px solid #f0c419;
    flex-shrink: 0;
}

.photo-capture-preview img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block;
}

.photo-capture-copy {
    min-width: 0;
}

.photo-capture-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.photo-capture-actions .btn,
.photo-capture-actions label.btn {
    flex: 0 1 auto;
}

html.selfie-open,
body.selfie-open {
    overflow: hidden !important;
    touch-action: none;
}

.selfie-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    background: rgba(7, 21, 50, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-sizing: border-box;
}

.selfie-modal[hidden] {
    display: none !important;
}

.selfie-modal-dialog {
    width: min(420px, 100%);
    max-height: min(92dvh, 920px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 20px;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.selfie-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.selfie-modal-head strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.selfie-modal-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #eef2f7;
    color: #0b1f4a;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.selfie-modal-tip {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.selfie-modal-stage {
    position: relative;
    width: min(280px, 72vw);
    aspect-ratio: 1 / 1;
    margin: 0.25rem auto;
    border-radius: 50%;
    overflow: hidden;
    background: #0b1f4a;
    border: 3px solid #f0c419;
    max-width: 100%;
}

.selfie-modal-stage video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block;
    transform: scaleX(-1);
    background: #000;
}

.selfie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.selfie-modal-actions .btn {
    flex: 1 1 140px;
}

@media (max-width: 575.98px) {
    .photo-capture-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 0.9rem;
    }

    .photo-capture-preview {
        width: 96px;
        height: 96px;
        max-width: 96px;
        max-height: 96px;
    }

    .photo-capture-actions {
        justify-content: center;
    }

    .photo-capture-actions .btn,
    .photo-capture-actions label.btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }

    .selfie-modal-dialog {
        width: 100%;
        max-height: calc(100dvh - 1.5rem);
        border-radius: 18px;
        padding: 0.9rem;
    }

    .selfie-modal-stage {
        width: min(240px, 68vw);
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .photo-capture-preview {
        width: 104px;
        height: 104px;
        max-width: 104px;
        max-height: 104px;
    }

    .selfie-modal-stage {
        width: min(260px, 55vw);
    }
}

.account-page .account-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 1.15rem 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(240, 196, 25, 0.28), transparent 42%),
        linear-gradient(135deg, #071532 0%, #0b1f4a 48%, #16356f 100%);
    box-shadow: 0 14px 32px rgba(7, 21, 50, 0.18);
}

.account-hero-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.9rem 1.1rem;
    align-items: center;
}

.account-avatar-wrap {
    position: relative;
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
}

.account-page .account-avatar,
.account-avatar {
    display: block !important;
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2.5px solid #f0c419 !important;
    background: rgba(255, 255, 255, 0.12);
}

.account-avatar-edit {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0c419;
    color: #0b1f4a;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #fff;
    line-height: 1;
}

.account-hero-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.account-hero-title {
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 0.25rem;
    line-height: 1.25;
    word-break: break-word;
}

.account-hero-sub {
    opacity: 0.88;
    margin-bottom: 0.7rem;
    max-width: 36rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.account-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.account-meta-chips span {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.75rem;
    font-weight: 600;
}

.account-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.account-hero-actions .btn {
    font-size: 0.86rem;
    padding: 0.45rem 0.9rem;
}

.account-hero .btn-outline-primary,
.account-hero .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #fff !important;
    background: transparent !important;
}

.account-hero .btn-outline-primary:hover,
.account-hero .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

.account-stat {
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid #cbd5e1;
    height: 100%;
}

.account-stat .summary-value {
    font-size: clamp(1.35rem, 3vw, 1.7rem);
}

.account-stat-total { border-top-color: #0b1f4a; }
.account-stat-ok { border-top-color: #16a34a; }
.account-stat-wait { border-top-color: #f0c419; }
.account-stat-no { border-top-color: #dc2626; }

.account-profile-panel,
.account-refs-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.1rem 1.15rem;
    height: 100%;
    box-shadow: 0 8px 22px rgba(11, 31, 74, 0.05);
}

.account-panel-title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.account-ref-card {
    border: 1px solid #e8eef7;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.65rem;
    background: #f8fafc;
}

.account-ref-table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .account-page .account-hero {
        border-radius: 18px;
        padding: 1rem 1.05rem;
    }

    .account-hero-main {
        gap: 0.85rem;
    }

    .account-avatar-wrap {
        width: 64px;
        height: 64px;
    }

    .account-page .account-avatar,
    .account-avatar {
        width: 64px !important;
        height: 64px !important;
        max-width: 64px !important;
        max-height: 64px !important;
    }
}

@media (max-width: 575.98px) {
    .account-hero-main {
        flex-direction: row;
        align-items: flex-start;
    }

    .account-avatar-wrap {
        width: 56px;
        height: 56px;
        margin-top: 0.15rem;
    }

    .account-page .account-avatar,
    .account-avatar {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
    }

    .account-avatar-edit {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }

    .account-hero-sub {
        font-size: 0.86rem;
    }

    .account-hero-actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .account-stat {
        padding: 0.7rem 0.75rem;
    }

    .account-stat .summary-label {
        font-size: 0.68rem;
    }
}

.user-dashboard-kicker,
.area-manager-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(240, 196, 25, 0.16);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.user-dashboard-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.user-dashboard-subtitle {
    color: var(--muted);
    line-height: 1.7;
}

.user-dashboard-badge-card {
    min-width: 240px;
    border-radius: 20px;
    padding: 1.2rem;
    background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
    color: #fff;
}

.summary-metric {
    border-radius: 18px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
}

.summary-label {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.summary-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
}

.profile-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #edf2f7;
}

.profile-label {
    color: var(--muted);
    font-weight: 600;
}

.profile-value {
    font-weight: 700;
    text-align: right;
}

.user-table-count {
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(240, 196, 25, 0.18);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.86);
    padding-top: 3.5rem;
    margin-top: 0;
}

.footer-brand {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.footer-brand p {
    color: var(--gold);
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 24rem;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-list li span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-list a,
.footer-list.plain a {
    color: #fff;
}

.footer-list a:hover {
    color: var(--gold);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.social-row a,
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: transform .15s ease, background .15s ease;
}

.social-row a:hover,
.social-icon:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

.glass-card .social-row a,
.glass-card .social-icon {
    background: rgba(11, 31, 74, 0.08);
    color: var(--navy);
}

.glass-card .social-row a:hover,
.glass-card .social-icon:hover {
    background: var(--navy);
    color: #fff;
}

.social-whatsapp { background: rgba(37, 211, 102, 0.2) !important; color: #25d366 !important; }
.social-whatsapp:hover { background: #25d366 !important; color: #fff !important; }


.footer-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.2rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-meta {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.8);
}

.jai-hind {
    margin-left: 0.5rem;
    color: var(--gold);
    font-weight: 800;
    font-style: italic;
}

.admin-header,
.admin-nav .nav-link.active,
.admin-nav .nav-link:hover {
    color: var(--navy);
}

.admin-nav .nav-link {
    color: #334155;
    font-weight: 600;
    border-radius: 12px;
}

.admin-nav .nav-link.active,
.admin-nav .nav-link:hover {
    background: rgba(240, 196, 25, 0.18);
}

.stat-card {
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
}

.stat-card h3 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
}

.area-manager {
    background: #fff;
}

.area-manager-add,
.area-manager-table {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
}

.area-manager-add {
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.page-shell {
    min-height: 70vh;
    padding: 2rem 0 3rem;
}

@media (max-width: 992px) {
    .hero-grid,
    .about-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 2.2rem 0 2.8rem;
    }

    .hero-photo-layer {
        opacity: 0.35;
    }

    .hero-features,
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-photo {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-features,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-value {
        text-align: left;
    }
}

/* ===== MOCKUP MATCH: Hero / About / Register ===== */
.hero-mock {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    color: #fff;
    background: #071532;
}

.hero-mock-bg {
    position: absolute;
    inset: 0;
    /* Atmosphere only — layout sample image is NOT used here */
    background:
        linear-gradient(90deg, rgba(7,21,50,.88) 0%, rgba(7,21,50,.55) 45%, rgba(7,21,50,.72) 100%),
        url('../images/hero-bg.svg') center/cover no-repeat;
}

.hero-mock-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,21,50,.25) 0%, rgba(7,21,50,.15) 50%, rgba(7,21,50,.55) 100%);
    pointer-events: none;
}

.hero-mock-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.85fr 0.95fr;
    gap: 1.25rem;
    align-items: center;
    padding: 2.5rem 0 3rem;
    min-height: calc(100vh - 78px);
}

.hero-mock-kicker {
    color: #f0c419;
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    margin: 0 0 0.55rem;
}

.hero-mock-name {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 0.85rem;
    text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.social-row-hero {
    margin: 0 0 1rem !important;
}

.social-row-hero .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.social-row-hero .social-icon:hover {
    background: #f0c419 !important;
    color: #0b1f4a !important;
    border-color: #f0c419;
}

.hero-mock-badge {
    display: inline-block;
    background: #f0c419;
    color: #0b1f4a;
    font-weight: 800;
    font-size: 0.82rem;
    border-radius: 6px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
}

.hero-mock-title {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.hero-mock-text {
    color: rgba(255,255,255,.88);
    max-width: 30rem;
    line-height: 1.7;
    margin-bottom: 1.35rem;
}

.hero-mock-pills {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.hero-pill {
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 0.75rem 0.4rem;
    backdrop-filter: blur(6px);
}

.hero-pill-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 0.45rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(240,196,25,.15);
    color: #f0c419;
    border: 1px solid rgba(240,196,25,.35);
}

.hero-pill span:last-child {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-mock-portrait {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-portrait-frame {
    width: min(100%, 360px);
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.45);
    border: 3px solid rgba(240,196,25,.55);
    background: #0b1f4a;
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.register-dark-card {
    background: linear-gradient(165deg, #0d275c 0%, #0b1f4a 55%, #091936 100%);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 1.35rem 1.35rem 1.2rem;
    box-shadow: 0 28px 60px rgba(0,0,0,.4);
    color: #fff;
}

.register-dark-head {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.register-dark-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(240,196,25,.15);
    color: #f0c419;
    flex-shrink: 0;
}

.register-dark-head h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.register-dark-head p {
    margin: 0.15rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: 0.9rem;
}

.register-dark-form {
    display: grid;
    gap: 0.75rem;
}

.field-icon {
    position: relative;
    display: block;
    margin: 0;
}

.field-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f92b8;
    display: grid;
    place-items: center;
}

.field-icon input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.96);
    color: #0b1f4a;
    border-radius: 12px;
    padding: 0.85rem 0.9rem 0.85rem 2.6rem;
    font-weight: 500;
    outline: none;
}

.field-icon input:focus {
    border-color: #f0c419;
    box-shadow: 0 0 0 3px rgba(240,196,25,.25);
}

.btn-continue-gold {
    margin-top: 0.25rem;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0b1f4a;
    background: linear-gradient(135deg, #f0c419, #ffd84d);
    box-shadow: 0 10px 24px rgba(240,196,25,.28);
}

.btn-continue-gold:hover {
    filter: brightness(1.03);
}

.register-dark-note {
    margin: 0.9rem 0 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}

.register-dark-note a {
    color: #f0c419;
    font-weight: 700;
}

.value-mock {
    background: #071532;
    color: #fff;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.value-mock-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.value-mock-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.value-mock-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(125, 180, 255, 0.14);
    color: #8ec5ff;
    font-weight: 800;
    flex-shrink: 0;
}

.value-mock-item h3 {
    margin: 0 0 0.2rem;
    font-size: 0.98rem;
    font-weight: 700;
}

.value-mock-item p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 0.86rem;
    line-height: 1.45;
}

.about-mock {
    background: #fff;
    padding: 4rem 0;
}

.about-mock-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
}

.about-mock-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    background: #eef2f8;
}

.about-tricolor {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,153,51,.35), transparent 40%),
        linear-gradient(225deg, rgba(19,136,8,.28), transparent 42%),
        linear-gradient(180deg, transparent 55%, rgba(255,255,255,.55));
    z-index: 1;
    pointer-events: none;
}

.about-mock-photo img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-mock-kicker {
    color: #d4a80a;
    font-weight: 800;
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.about-mock-bio h2 {
    color: #0b1f4a;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin: 0 0 1rem;
}

.about-mock-bio p {
    color: #3c4b66;
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.about-mock-bio blockquote {
    margin: 1.2rem 0;
    padding: 0.9rem 0 0.9rem 1rem;
    border-left: 4px solid #f0c419;
    color: #0b1f4a;
    font-weight: 700;
    font-style: italic;
    line-height: 1.6;
}

.about-more-link {
    color: #0b1f4a;
    font-weight: 800;
}

.about-mock-resolve {
    background: #f7f9fc;
    border: 1px solid rgba(11,31,74,.08);
    border-radius: 22px;
    padding: 1.35rem 1.25rem;
}

.about-mock-resolve h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b1f4a;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.resolve-head-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(29,78,216,.1);
    color: #1d4ed8;
}

.about-mock-resolve ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.about-mock-resolve li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #334155;
    line-height: 1.45;
    font-weight: 600;
}

.about-mock-resolve .ri {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(11,31,74,.08);
    flex-shrink: 0;
}

.resolve-footer-tag {
    margin-top: 1.15rem;
    background: linear-gradient(135deg, #f0c419, #ffe680);
    color: #0b1f4a;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    text-align: center;
    font-size: 0.86rem;
}

.work-mock-section {
    background: #f5f7fb;
}

@media (max-width: 1100px) {
    .hero-mock-inner {
        grid-template-columns: 1fr 1fr;
    }
    .hero-mock-portrait {
        grid-column: 1 / -1;
        order: -1;
    }
    .hero-portrait-frame {
        width: min(280px, 70%);
        aspect-ratio: 3/3.4;
    }
}

@media (max-width: 992px) {
    .hero-mock-inner,
    .about-mock-grid,
    .value-mock-grid {
        grid-template-columns: 1fr;
    }
    .hero-mock-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-mock-photo {
        min-height: 340px;
    }
}

@media (max-width: 576px) {
    .hero-mock-pills {
        grid-template-columns: 1fr 1fr;
    }
}
