.admin-shell {
			position: relative;
			z-index: 1;
		}
		.admin-page-shell {
			width: min(1400px, calc(100% - 24px));
			max-width: none;
			margin: 0 auto;
			padding: 24px 12px 60px;
		}
		.admin-page-shell--tight {
			padding-top: 18px;
		}
		.admin-header-shell {
			padding: 18px 0 0;
		}
		.admin-header-shell .container {
			width: min(1400px, calc(100% - 24px));
			max-width: none;
		}
		.admin-top-nav {
			margin: 0;
			border-radius: 18px;
		}
		.admin-top-nav .customer-nav-links a.admin-nav-link-active {
			background: rgba(255, 255, 255, 0.16);
			border-color: rgba(191, 238, 231, 0.88);
		}
		.admin-sidebar {
			background: rgba(255, 255, 255, 0.92);
			backdrop-filter: blur(10px);
			border-radius: 22px;
			box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
			position: sticky;
			top: 24px;
			min-width: 0;
		}
		.admin-sidebar .nav-link {
			border-radius: 14px;
			color: #0f172a;
			padding: 0.8rem 1rem;
			font-weight: 600;
			display: block;
			white-space: normal;
			line-height: 1.4;
			overflow-wrap: anywhere;
			word-break: normal;
		}
		.admin-sidebar .nav-link.active,
		.admin-sidebar .nav-link:hover {
			background: #0ea5a7;
			color: #fff;
		}
		@media (min-width: 1200px) {
			.admin-shell .admin-sidebar-column {
				flex: 0 0 280px;
				width: 280px;
			}
			.admin-shell .admin-main-column {
				flex: 1 1 0;
				width: calc(100% - 280px);
			}
		}
		.admin-panel-card {
			background: rgba(255, 255, 255, 0.94);
			backdrop-filter: blur(10px);
			border: 0;
			border-radius: 24px;
			box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
		}
		.table thead th {
			white-space: nowrap;
		}
		.section-title {
			font-weight: 700;
			letter-spacing: -0.02em;
		}


/* TOP TEAL SHAPE */
.top-shape {
    display:none;
}

/* NAVBAR */
.navbar-custom {
    margin-top: 60px;
    background:#E3642A;
    position:relative;
    z-index:2;
    padding:15px;
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:12px;
    width:min(100%, 1180px);
    margin-left:auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.navbar-custom a {
    color:white;
    margin:0 10px;
    text-decoration:none;
    font-weight:500;
}

/* HERO */
.hero {
    display:flex;
    min-height:calc(100vh - 130px);
    position:relative;
}

/* LEFT IMAGE */
.left {
    width: 55%;
    height: 900px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}
.left img {
    width:96%;
    height:56%;
    object-fit:cover;
}

/* DARK OVERLAY (like your design) */
.left::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
    pointer-events:none;
}

/* ANGLED CUT */
/*
.left::after {
    content:'';
    position:absolute;
    right:-60px;
    top:0;
    width:100px;
    height:100%;
    background:white;
    transform:skewX(-20deg);
}
*/

/* RIGHT PANEL */
.right {
    width:45%;
    background:#F4F4F4;
    padding:clamp(36px, 6vw, 100px) clamp(20px, 5vw, 60px);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* TEXT */
.hero h2 {
    font-weight:800;
    font-size:clamp(1.4rem, 2.2vw, 1.9rem);
    line-height:1.4;
    margin-bottom:30px;
}

/* SEARCH */
.search-box {
    display:flex;
    border:1px solid #ccc;
    border-radius:5px;
    overflow:hidden;
    margin-bottom:40px;
    width:100%;
    max-width:420px;
}
.search-box input {
    flex:1;
    padding:10px;
    border:none;
    min-width:0;
}
.search-box button {
    background:#E3642A;
    color:white;
    border:none;
    padding:0 15px;
}

/* BUTTONS */
.btn-login {
    background:#0F6C7B;
    color:white;
    border:none;
}
.btn-register {
    background:#E3642A;
    color:white;
    border:none;
}

.right .btn {
    width:min(260px, 100%) !important;
}

/* ICON BAR */
.icons {
    margin-top: -200px;
    width:100%;
    background:#eee;
    padding:20px;
    border-radius:0;
}

a.text-hover:hover {
    color: #ffffff !important;
}

.icons .card-body {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap: 48px;
}
.icons img {
    width:40px;
    opacity:0.7;
}
.icons svg {
    width:40px;
    height:40px;
    color:#5f5f5f;
    stroke:currentColor;
    fill:none;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    flex:0 0 auto;
}
.icons .card-body img {
    margin:0;
}
.icons .card-body svg {
    margin:0;
}
.icons .card-body img:last-child {
    margin-right:0;
}

.icon-list {
    margin: 24px 20px 0 20px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    flex-wrap:wrap;
}

.icon-list svg {
    margin-left:12px;
    width:24px;
    height:24px;
    color:#222;
    flex:0 0 auto;
}

@media(min-width:769px){
    .icon-list {
        position:fixed;
        right:40px;
        bottom:32px;
        margin:0;
        z-index:5;
    }
}

/* MOBILE GRID FOR ICONS */
@media(max-width:768px){
    .top-shape {
        width:100%;
        height:70px;
        clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    }

    .navbar-custom {
        width:100%;
        margin-top:52px;
        clip-path:none;
        justify-content:center;
        gap:6px 10px;
    }

    .d-flex.flex-row-reverse {
        justify-content:center !important;
    }

    .icons .card-body {
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        justify-items:center;
        align-items:center;
        gap:20px;
    }
    .icons .card-body img {
        margin:0;
        width:50px;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero {
        flex-direction:column;
        height:auto;
        min-height:0;
    }

    .left {
        width:100%;
        height:42vh;
        min-height:260px;
    }

    .left img {
        width:92%;
        height:92%;
    }

    .right {
        width:100%;
    }

    .right {
        padding:32px 20px;
        align-items:center;
    }

    .hero h2,
    .right .text-sm-end,
    .right p {
        text-align:center !important;
    }

    .search-box {
        max-width:100%;
    }

    .right .btn {
        width:100% !important;
        max-width:320px;
    }

    .icons {
        margin-top:0;
        position:relative;
        padding:20px 10px;
    }

    .navbar-custom a {
        margin:0 4px;
        font-size:11px;
    }

    .icon-list {
        margin: 16px 0 0 0;
        text-align:center !important;
        justify-content:center;
        position:static;
    }

    .icon-list svg {
        margin:0 8px;
    }
}

@media(max-width:420px){
    .top-shape {
        height:62px;
    }

    .navbar-custom {
        margin-top:46px;
        padding:10px 8px;
    }

    .icons .card-body {
        grid-template-columns:1fr;
    }

    .navbar-custom a {
        font-size:10px;
        margin:0 3px;
    }

    .search-box {
        margin-bottom:24px;
    }
}

/* LOGIN PAGE STYLING (SCOPED) */
.login-page {
    min-height:100vh;
    background:#ececf1;
    position:relative;
}

.login-page::before {
    content:'';
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(45deg, rgba(230,100,54,0.10) 35%, rgba(230,100,54,0) 35%),
        linear-gradient(180deg, rgba(15,108,123,0) 78%, rgba(15,108,123,0.35) 100%);
    z-index:0;
}

.login-page .top-shape,
.login-page .navbar-custom,
.login-page .login-stage {
    position:relative;
}

.login-page .top-shape {
    width:45%;
    height:110px;
    z-index:3;
}

.login-page .navbar-custom {
    margin-left:auto;
    margin-right:0;
    z-index:2;
}

.login-page .login-nav-wrap {
    position:relative;
    z-index:2;
}

.login-page .login-stage {
    z-index:1;
}

.login-stage {
    width:min(980px, calc(100% - 80px));
    margin:26px auto 0;
    padding:18px 24px 34px;
}

.login-panel h1 {
    text-align:center;
    font-size:34px;
    letter-spacing:0.5px;
    margin:6px 0 18px;
    font-weight:800;
    color:#17202a;
}

.login-grid {
    display:grid;
    grid-template-columns:1fr 1px 1fr;
    gap:34px;
    align-items:start;
}

.social-side {
    padding-top:34px;
}

.social-btn {
    height:54px;
    border-radius:14px;
    border:2px solid #8d8d91;
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 18px;
    text-decoration:none;
    color:#565d66;
    font-size:16px;
    margin-bottom:20px;
    background:#f4f4f7;
}

.google-btn {
    background:#f5f5f5;
}

.facebook-btn {
    background:#2f5fa2;
    border-color:#2f5fa2;
    color:#fff;
}

.social-mark {
    width:34px;
    height:34px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    line-height:1;
}

.google-mark {
    color:#f57c00;
    background:#fff;
}

.facebook-mark {
    color:#2f5fa2;
    background:#fff;
    text-transform:lowercase;
}

.login-divider {
    width:1px;
    min-height:190px;
    background:#95979c;
    margin-top:16px;
}

.field-wrap {
    margin-bottom:20px;
}

.field-wrap input {
    width:100%;
    border:2px solid #555b66;
    border-radius:14px;
    height:54px;
    font-size:17px;
    padding:0 16px;
    background:#ececf1;
    color:#28323d;
}

.field-wrap input:focus {
    outline:none;
    border-color:#0f6c7b;
}

.forgot-wrap {
    text-align:right;
    margin:2px 4px 16px 0;
}

.forgot-wrap a {
    color:#4f555f;
    text-decoration:none;
    font-size:16px;
}

.submit-login {
    width:100%;
    border:none;
    border-radius:14px;
    height:54px;
    font-size:22px;
    letter-spacing:1px;
    color:#fff;
    background:#0f6c7b;
}

.signup-row {
    margin-top:20px;
    text-align:center;
    color:#343b44;
    font-size:17px;
}

.signup-pill {
    display:inline-flex;
    align-items:center;
    margin-left:12px;
    padding:3px 18px;
    border:2px solid #a9adb5;
    border-radius:999px;
    color:#0f6c7b;
    text-decoration:none;
    font-size:16px;
}

@media(max-width:1024px){
    .login-stage {
        width:min(980px, calc(100% - 32px));
    }

    .login-panel h1 {
        font-size:28px;
    }

    .social-btn,
    .field-wrap input,
    .submit-login {
        height:48px;
        font-size:18px;
    }

    .social-mark {
        width:32px;
        height:32px;
        font-size:24px;
    }

    .forgot-wrap a,
    .signup-row,
    .signup-pill {
        font-size:18px;
    }
}

@media(max-width:768px){
    .login-page .top-shape {
        width:100%;
        height:76px;
    }

    .login-page .navbar-custom {
        width:100%;
        margin-top:0;
        clip-path:none;
        padding:10px 10px;
        justify-content:center;
    }

    .login-stage {
        margin-top:10px;
        padding:12px 10px 24px;
    }

    .login-grid {
        grid-template-columns:1fr;
        gap:16px;
    }

    .social-side {
        padding-top:4px;
    }

    .login-divider {
        display:none;
    }

    .forgot-wrap {
        text-align:left;
        margin-left:2px;
    }

    .signup-row {
        line-height:1.4;
    }

    .signup-pill {
        margin-left:8px;
    }
}

@media(max-width:768px){
    .login-nav-wrap{
        position: relative;
        top: 90px;
    }

    .login-stage {
        margin-top: 90px;
    }
}

@media(max-width:480px){
    .login-page .top-shape {
        height:64px;
    }

    .login-page .navbar-custom {
        padding:8px 6px;
        gap:6px;
    }

    .login-page .navbar-custom a {
        margin:0 4px;
        font-size:11px;
    }

    .login-stage {
        width:calc(100% - 16px);
        padding:10px 6px 20px;
    }

    .social-btn,
    .field-wrap input,
    .submit-login {
        height:44px;
    }

    .submit-login {
        font-size:18px;
    }

    .signup-row {
        font-size:15px;
    }

    .signup-pill {
        font-size:14px;
        padding:2px 12px;
    }
}

/* ADMIN WORKERS BACKGROUND (SCOPED) */
.workers-bg-page {
    min-height:100vh;
    background:#ececf1;
    position:relative;
    overflow-x:hidden;
}

.workers-bg-page::before,
.workers-bg-page::after {
    content:none;
}

.workers-bg-page .container {
    position:relative;
    z-index:1;
}

.workers-bg-page .modal {
    z-index:1055;
}

.workers-bg-page .modal-backdrop {
    z-index:1050;
}

  :root {
        --otp-bg-start: #f5f7ff;
        --otp-bg-end: #eef2f6;
        --otp-card: #ffffff;
        --otp-text: #1f2937;
        --otp-muted: #6b7280;
        --otp-accent: #0f6c7b;
        --otp-accent-2: #e3642a;
        --otp-danger-bg: #fff2f2;
        --otp-danger-border: #f6c9c9;
        --otp-danger-text: #9a1f1f;
    }


    .otp-page {
        min-height: 100vh;
        display: grid;
        place-items: center;
        padding: 32px 16px;
        background:
            radial-gradient(circle at 18% 15%, rgba(227, 100, 42, 0.16), transparent 38%),
            radial-gradient(circle at 85% 80%, rgba(15, 108, 123, 0.2), transparent 42%),
            linear-gradient(145deg, var(--otp-bg-start), var(--otp-bg-end));
    }

    .otp-card {
        width: min(100%, 460px);
        background: var(--otp-card);
        border-radius: 24px;
        padding: clamp(24px, 4vw, 36px);
        box-shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
        border: 1px solid rgba(15, 108, 123, 0.1);
        color: var(--otp-text);
        font-family: "Poppins", "Segoe UI", sans-serif;
    }

    .otp-kicker {
        margin: 0 0 8px;
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--otp-accent-2);
        font-weight: 700;
    }

    .otp-title {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
        line-height: 1.25;
        font-weight: 700;
    }

    .otp-subtitle {
        margin: 10px 0 0;
        color: var(--otp-muted);
        font-size: 14px;
        line-height: 1.6;
    }

    .otp-error {
        margin: 20px 0 0;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid var(--otp-danger-border);
        background: var(--otp-danger-bg);
        color: var(--otp-danger-text);
        font-size: 14px;
        line-height: 1.45;
    }

    .otp-form {
        margin-top: 24px;
    }

    .otp-label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
    }

    .otp-input {
        width: 100%;
        height: 54px;
        border: 1px solid #d9dee7;
        border-radius: 14px;
        padding: 0 16px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 0.36em;
        text-align: center;
        color: #111827;
        background: #fbfcfe;
        outline: none;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .otp-input:focus {
        border-color: var(--otp-accent);
        box-shadow: 0 0 0 4px rgba(15, 108, 123, 0.16);
        background: #ffffff;
    }

    .otp-hint {
        margin: 10px 2px 0;
        color: var(--otp-muted);
        font-size: 12px;
    }

    .otp-btn {
        margin-top: 20px;
        width: 100%;
        height: 52px;
        border: 0;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.02em;
        cursor: pointer;
        color: #ffffff;
        background: linear-gradient(92deg, var(--otp-accent) 0%, #138192 56%, var(--otp-accent-2) 100%);
        box-shadow: 0 14px 24px rgba(15, 108, 123, 0.26);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .otp-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(15, 108, 123, 0.32);
    }

    .otp-btn:active {
        transform: translateY(0);
    }

    @media (max-width: 576px) {
        .otp-card {
            border-radius: 18px;
            padding: 22px 16px;
        }

        .otp-input {
            font-size: 20px;
            letter-spacing: 0.28em;
            height: 50px;
        }
    }

/* WORKER DASHBOARD (MATCH REFERENCE) */
.worker-dashboard-page {
    min-height: 100vh;
    margin: 0;
    background: #e6e7ea;
    position: relative;
    overflow-x: hidden;
}

.worker-dashboard-shell {
   
    width: min(1080px, calc(100% - 44px));
    margin: 48px auto 34px;
}

.worker-dashboard-shell::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 38px;
    height: 340px;
    background: #0f6c7b;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 98%);
    pointer-events: none;
}

.worker-top-strip {
    width: min(640px, 68%);
    margin: 0 0 24px auto;
    height: 46px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    overflow: hidden;
}

.worker-top-strip__profile,
.worker-top-strip__home {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.worker-top-strip__profile {
    background: #e3642a;
    color: #fef6ef;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.worker-top-strip__home {
    background: #0f6c7b;
    color: #1f2833;
    font-weight: 700;
}

.worker-card {
    padding: 4px 8px 8px;
    position: relative;
}

.worker-title {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.6vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    color: #232831;
    letter-spacing: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.worker-grid-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    column-gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.worker-photo-block {
    text-align: center;
}

.worker-avatar {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid #f1f1f1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    background: #d2d2d2;
}

.worker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%);
}

.worker-change-text {
    margin-top: 10px;
    font-size: 15px;
    color: #4f5560;
}

.worker-personal,
.worker-company,
.worker-profile-lines {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #2f343f;
}

.worker-name {
    font-size: 30px;
    margin: 0 0 4px;
    font-weight: 500;
}

.worker-personal p,
.worker-company p,
.worker-profile-lines p {
    margin: 3px 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
}

.worker-personal span,
.worker-company span,
.worker-profile-lines span {
    font-weight: 400;
}

.worker-company h3 {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 600;
}

.worker-grid-main {
    margin-top: 30px;
    margin-left: 300px;
    width: min(720px, calc(100% - 300px));
    position: relative;
    z-index: 1;
}

.worker-note {
    font-size: 14px;
    color: #444b56;
}

.worker-current-status {
    margin-top: 12px;
    font-weight: 600;
}

.worker-current-status--pending {
    color: #8b4b00;
}

.worker-current-status--approved {
    color: #0e7f49;
}

.worker-current-status--rejected {
    color: #a21f1f;
}

.worker-actions {
    margin-top: 28px;
    margin-left: 300px;
    display: grid;
    gap: 6px;
    width: min(500px, calc(100% - 300px));
}

.worker-check {
    font-size: 14px;
    color: #2f343f;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.22;
}

.worker-check input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.worker-save-btn {
    margin-top: 18px;
    margin-left: 128px;
    width: 340px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #e3642a;
    color: #fdf7f2;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

@media (max-width: 1200px) {
    .worker-top-strip__profile,
    .worker-top-strip__home {
        font-size: 18px;
    }

    .worker-title {
        font-size: clamp(26px, 3vw, 34px);
    }

    .worker-name {
        font-size: 24px;
    }

    .worker-personal p,
    .worker-company p,
    .worker-profile-lines p,
    .worker-company h3,
    .worker-check,
    .worker-note {
        font-size: 16px;
    }

    .worker-save-btn {
        font-size: 18px;
        width: 300px;
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .worker-dashboard-shell::before {
        display: none;
    }

    .worker-top-strip {
        width: 100%;
        margin: 0 0 18px;
    }

    .worker-grid-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .worker-photo-block {
        text-align: left;
    }

    .worker-avatar {
        margin: 0;
    }

    .worker-grid-main,
    .worker-actions {
        width: 100%;
        margin-left: 0;
        margin-top: 18px;
    }
}

@media (max-width: 576px) {
    .worker-dashboard-shell {
        width: calc(100% - 20px);
        margin: 18px auto;
    }

    .worker-top-strip {
        height: auto;
        grid-template-columns: 1fr;
    }

    .worker-top-strip__profile {
        clip-path: none;
        min-height: 42px;
    }

    .worker-top-strip__home {
        min-height: 42px;
    }

    .worker-save-btn {
        width: 100%;
    }
}
