 :root {
     --blue: #1a56db;
     --blue-dark: #1340b0;
     --blue-light: #eff6ff;
     --green: #16a34a;
     --green-light: #22c55e;
     --navy: #0d1f3c;
     --navy-mid: #1e3a5f;
     --accent: #3b82f6;
     --text-dark: #0f172a;
     --text-mid: #334155;
     --text-muted: #64748b;
     --border: #e2e8f0;
     --surface: #f8fafc;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     background: #fff;
     overflow-x: hidden;
     overflow-x: hidden;
     max-width: 100%;
     /* padding-top: 70px; */
 }



 /*  */
 /* ========== MOBILE OVERFLOW FIX ========== */

 /* Navbar brand margin fix */
 @media (max-width: 991px) {
     .navbar-brand {
         margin-left: 0 !important;
     }
 }

 /* Hero slide search fix */
 @media (max-width: 575px) {
     .slide-search {
         max-width: 100% !important;
         padding: 12px !important;
     }

     .slide-inner {
         max-width: 100%;
         padding-right: 0;
     }

     .slide-title {
         font-size: 22px !important;
     }

     .slide-desc {
         font-size: 12px !important;
         margin-bottom: 16px;
     }
 }

 /* CTA card mobile fix */
 @media (max-width: 575px) {
     .cta-card {
         padding: 28px 18px !important;
     }
 }

 /* Worker slider card fix */
 @media (max-width: 575px) {
     .worker-card {
         min-width: 0 !important;
         width: 100% !important;
     }
 }

 /* Global overflow prevention */
 html,
 body {
     overflow-x: hidden !important;
     max-width: 100vw !important;
 }

 
 /*  */



 /* ========== SIDEBAR OVERLAY ========== */
 .sidebar-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.55);
     z-index: 1040;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     backdrop-filter: blur(2px);
 }

 .sidebar-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 /* ========== MOBILE SIDEBAR ========== */
 .mobile-sidebar {
     position: fixed;
     top: 0;
     left: -300px;
     width: 280px;
     height: 100vh;
     background: #fff;
     z-index: 1050;
     transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
     overflow-y: auto;
     box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
     display: flex;
     flex-direction: column;
 }

 .mobile-sidebar.open {
     left: 0;
 }

 .sidebar-header {
     background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
     padding: 24px 20px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .sidebar-brand {
     display: flex;
     flex-direction: column;
 }

 .sidebar-brand-row {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .sidebar-brand-icon {
     width: 34px;
     height: 34px;
     background: var(--blue);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 15px;
 }

 .sidebar-brand-name {
     font-size: 20px;
     font-weight: 800;
     color: #fff;
 }

 .sidebar-brand-name span {
     color: #60a5fa;
 }

 .sidebar-brand-sub {
     font-size: 8px;
     letter-spacing: 1.5px;
     color: rgba(255, 255, 255, 0.4);
     margin-top: 3px;
     padding-left: 42px;
 }

 .sidebar-close {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     border: none;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     cursor: pointer;
     transition: background 0.2s;
 }

 .sidebar-close:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .sidebar-user-card {
     background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
     padding: 16px 20px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .sidebar-avatar {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 20px;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .sidebar-user-info p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 6px;
 }

 .sidebar-auth-btns {
     display: flex;
     gap: 8px;
 }

 .sb-btn-login {
     font-size: 12px;
     font-weight: 600;
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.5);
     background: transparent;
     border-radius: 6px;
     padding: 5px 14px;
     cursor: pointer;
 }

 .sb-btn-login:hover {
     background: rgba(255, 255, 255, 0.15);
 }

 .sb-btn-register {
     font-size: 12px;
     font-weight: 600;
     color: var(--navy);
     background: #fff;
     border: none;
     border-radius: 6px;
     padding: 5px 14px;
     cursor: pointer;
 }

 .sidebar-nav {
     flex: 1;
     padding: 12px 0;
 }

 .sidebar-nav-label {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 1.5px;
     color: var(--text-muted);
     padding: 10px 20px 6px;
     text-transform: uppercase;
 }

 .sidebar-nav-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 20px;
     color: var(--text-mid);
     font-size: 14px;
     font-weight: 500;
     text-decoration: none;
     border-left: 3px solid transparent;
     transition: all 0.2s;
 }

 .sidebar-nav-item:hover,
 .sidebar-nav-item.active {
     background: var(--blue-light);
     color: var(--blue);
     border-left-color: var(--blue);
 }

 .sidebar-nav-item i {
     width: 20px;
     text-align: center;
     font-size: 15px;
 }

 .sidebar-divider {
     height: 1px;
     background: var(--border);
     margin: 8px 20px;
 }

 .sidebar-footer {
     padding: 16px 20px;
     border-top: 1px solid var(--border);
 }

 .sidebar-social {
     display: flex;
     gap: 8px;
     margin-top: 10px;
 }

 .sidebar-social a {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: var(--surface);
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
     font-size: 13px;
     text-decoration: none;
     transition: all 0.2s;
 }

 .sidebar-social a:hover {
     background: var(--blue);
     color: #fff;
     border-color: var(--blue);
 }



 /* SIGN IN DROPDOWN  start*/
 /* ===== SIGN IN DROPDOWN ===== */
 .signin-dropdown-wrap {
     position: relative;
 }

 .btn-signin-toggle {
     background: linear-gradient(135deg, var(--blue), var(--navy-mid));
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 9px 18px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
     box-shadow: 0 3px 12px rgba(26, 86, 219, 0.35);
     transition: all 0.2s;
 }

 .btn-signin-toggle:hover {
     opacity: 0.92;
     transform: translateY(-1px);
 }

 .signin-mobile-btn {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--blue), var(--navy-mid));
     border: none;
     color: #fff;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 3px 10px rgba(26, 86, 219, 0.4);
     margin-right: 18px;
 }

 .signin-dropdown-menu {
     display: none;
     position: absolute;
     top: calc(100% + 10px);
     right: 0;
     background: #fff;
     border-radius: 14px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
     border: 1px solid #e5e7eb;
     min-width: 210px;
     padding: 8px 0;
     z-index: 9999;
     animation: dropFade 0.2s ease;
 }

 .signin-dropdown-menu.show {
     display: block;
 }

 .signin-dropdown-mobile {
     top: calc(100% + 10px);
     right: 18px;
 }

 @keyframes dropFade {
     from {
         opacity: 0;
         transform: translateY(-6px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .signin-group-label {
     font-size: 11px;
     font-weight: 700;
     color: #9ca3af;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: 6px 16px 4px;
 }

 .signin-dropdown-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 9px 16px;
     font-size: 13.5px;
     color: #1f2937;
     text-decoration: none;
     transition: background 0.15s;
 }

 .signin-dropdown-item i {
     color: var(--blue);
     font-size: 14px;
     width: 16px;
 }

 .signin-dropdown-item:hover {
     background: #f0f7ff;
     color: var(--blue);
 }

 .signin-divider {
     height: 1px;
     background: #f3f4f6;
     margin: 6px 0;
 }

 /* SIGN IN DROPDOWN  end*/

 /* ========== NAVBAR ========== */
 .navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    overflow: visible; /* এই line add করো */
 }

 .navbar-brand {
     display: flex;
     flex-direction: column;
     line-height: 1;
     text-decoration: none;
     margin-left: 63px;
 }

 .brand-row {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .brand-icon {
     width: 34px;
     height: 34px;
     background: linear-gradient(135deg, var(--blue), var(--navy-mid));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 14px;
     box-shadow: 0 3px 10px rgba(26, 86, 219, 0.35);
 }

 .brand-name {
     font-size: 22px;
     font-weight: 900;
     color: var(--text-dark);
     letter-spacing: -0.5px;
 }

 .brand-name span {
     color: var(--blue);
 }

 .brand-sub {
     font-size: 8.5px;
     letter-spacing: 2px;
     color: var(--text-muted);
     margin-top: 2px;
     font-weight: 500;
     padding-left: 40px;
 }


 .nav-logo {
     height: 75px;
     width: auto;
     object-fit: contain;
 }

 @media (max-width: 991px) {
     .nav-logo {
         height: 50px;
     }

     .navbar-brand {
         position: absolute;
         left: 50%;
         transform: translateX(-50%);
     }
 }

 .nav-link {
     font-weight: 500;
     color: var(--text-mid) !important;
     font-size: 16px;
     padding: 6px 14px !important;
     position: relative;
     transition: color 0.2s;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: var(--blue);
     border-radius: 2px;
     transition: width 0.2s;
 }

 .nav-link:hover {
     color: var(--blue) !important;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 70%;
 }

 .nav-link.active {
     color: var(--blue) !important;
     font-weight: 600;
 }

 .btn-login {
     border: 2px solid var(--blue);
     color: var(--blue);
     font-weight: 600;
     font-size: 14px;
     padding: 7px 22px;
     border-radius: 8px;
     background: transparent;
     transition: all 0.2s;
     cursor: pointer;
 }

 .btn-login:hover {
     background: var(--blue);
     color: #fff;
     box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
 }

 .btn-register {
     background: linear-gradient(135deg, var(--green), #15803d);
     color: #fff;
     font-weight: 600;
     font-size: 14px;
     padding: 7px 22px;
     border-radius: 8px;
     border: none;
     cursor: pointer;
     transition: all 0.2s;
     box-shadow: 0 3px 12px rgba(22, 163, 74, 0.3);
 }

 .btn-register:hover {
     transform: translateY(-1px);
     box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
 }

 .hamburger-btn {
     width: 40px;
     height: 40px;
     border: 1.5px solid var(--border);
     border-radius: 8px;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s;
     flex-direction: column;
     gap: 4px;
     padding: 10px;
 }

 .hamburger-btn:hover {
     border-color: var(--blue);
     background: var(--blue-light);
 }

 .hamburger-btn span {
     display: block;
     width: 18px;
     height: 2px;
     background: var(--text-dark);
     border-radius: 2px;
     transition: all 0.2s;
 }

 /* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

@media (min-width: 1400px) {
    .hero-slider {
        height: 730px;
    }
}

@media (min-width: 1920px) {
    .hero-slider {
        height: 800px;
    }
}

 .slide {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 0.9s ease, transform 0.9s ease;
     transform: scale(1.04);
 }

 .slide.active {
     opacity: 1;
     transform: scale(1);
     z-index: 2;
 }

 .slide-bg {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
 }

 .slide-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(105deg,
             rgba(9, 18, 40, 0.88) 0%,
             rgba(13, 31, 60, 0.72) 40%,
             rgba(13, 31, 60, 0.25) 75%,
             transparent 100%);
 }

 .slide-content {
     position: relative;
     z-index: 3;
     height: 100%;
     display: flex;
     align-items: center;
 }

 .slide-inner {
     max-width: 660px;
 }

 .slide-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(26, 86, 219, 0.25);
     border: 1px solid rgba(96, 165, 250, 0.4);
     color: #93c5fd;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     padding: 5px 14px;
     border-radius: 20px;
     margin-bottom: 20px;
     backdrop-filter: blur(4px);
 }

 .slide-badge i {
     font-size: 10px;
 }

 .slide-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(28px, 4vw, 52px);
     font-weight: 800;
     color: #fff;
     line-height: 1.15;
     margin-bottom: 16px;
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
 }

 .slide-title .accent {
     color: #4ade80;
 }

 .slide-title .accent-blue {
     color: #60a5fa;
 }

 .slide-desc {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.78);
     line-height: 1.7;
     margin-bottom: 32px;
     max-width: 520px;
 }

 .slide-search {
     background: rgba(255, 255, 255, 0.97);
     border-radius: 14px;
     padding: 14px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
     max-width: 540px;
     backdrop-filter: blur(10px);
 }

 .search-row {
     display: flex;
     gap: 8px;
     margin-bottom: 10px;
 }

 .s-field {
     flex: 1;
     display: flex;
     align-items: center;
     gap: 8px;
     background: var(--surface);
     border: 1.5px solid var(--border);
     border-radius: 9px;
     padding: 10px 12px;
     font-size: 13px;
     color: var(--text-mid);
     transition: border-color 0.2s;
 }

 .s-field:focus-within {
     border-color: var(--blue);
 }

 .s-field i {
     color: var(--blue);
     font-size: 13px;
     flex-shrink: 0;
 }

 .s-field select {
     border: none;
     background: transparent;
     font-size: 13px;
     color: var(--text-mid);
     outline: none;
     width: 100%;
     font-family: 'Inter', sans-serif;
 }

 .btn-search {
     background: linear-gradient(135deg, var(--green), #15803d);
     color: #fff;
     font-weight: 700;
     font-size: 14px;
     border: none;
     border-radius: 9px;
     padding: 12px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     cursor: pointer;
     transition: all 0.2s;
     box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
     letter-spacing: 0.3px;
 }

 .btn-search:hover {
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
 }

 .verified-row {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 14px;
 }

 .avatar-stack {
     display: flex;
 }

 .avatar-stack img {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     border: 2px solid #fff;
     margin-left: -8px;
     object-fit: cover;
 }

 .avatar-stack img:first-child {
     margin-left: 0;
 }

 .verified-text {
     font-size: 12px;
     font-weight: 600;
     color: var(--text-mid);
 }

 .verified-text strong {
     color: var(--green);
 }

 /* Slider Controls */
 .slider-controls {
     position: absolute;
     bottom: 28px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .s-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.4);
     border: none;
     cursor: pointer;
     transition: all 0.3s;
     padding: 0;
 }

 .s-dot.active {
     width: 28px;
     border-radius: 4px;
     background: #fff;
 }

 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     z-index: 10;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     border: 1.5px solid rgba(255, 255, 255, 0.3);
     color: #fff;
     font-size: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s;
     backdrop-filter: blur(4px);
 }

 .slider-arrow:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-50%) scale(1.05);
 }

 .slider-arrow.prev {
     left: 20px;
 }

 .slider-arrow.next {
     right: 20px;
 }

 @media (max-width: 575px) {
     .slider-arrow {
         display: none;
     }
 }

 /* Slide progress bar */
 .slide-progress {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--blue), var(--green-light));
     z-index: 10;
     width: 0%;
     transition: none;
 }

 .slide-progress.animating {
     transition: width 5s linear;
     width: 100%;
 }

 /* ========== SECTION COMMON ========== */
 .section-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--blue);
     margin-bottom: 10px;
 }

 .section-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--blue);
     border-radius: 2px;
 }

 .section-title {
     font-size: clamp(20px, 2.5vw, 28px);
     font-weight: 800;
     color: var(--text-dark);
     letter-spacing: -0.3px;
 }

 .view-all-link {
     font-size: 13px;
     color: var(--blue);
     font-weight: 600;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 4px;
     padding: 8px 16px;
     border: 1.5px solid var(--blue);
     border-radius: 8px;
     transition: all 0.2s;
     white-space: nowrap;
 }

 .view-all-link:hover {
     background: var(--blue);
     color: #fff;
 }

 /* ========== CATEGORIES ========== */
 .categories-section {
     padding: 64px 0 48px;
 }

 .category-card {
     background: #fff;
     border: 1.5px solid var(--border);
     border-radius: 16px;
     padding: 24px 14px 18px;
     text-align: center;
     transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .category-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--blue), var(--green));
     transform: scaleX(0);
     transition: transform 0.25s;
 }

 .category-card:hover {
     border-color: transparent;
     box-shadow: 0 8px 28px rgba(26, 86, 219, 0.14);
     transform: translateY(-4px);
 }

 .category-card:hover::before {
     transform: scaleX(1);
 }

 .cat-icon-wrap {
     width: 58px;
     height: 58px;
     border-radius: 16px;
     background: linear-gradient(135deg, #eff6ff, #dbeafe);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 12px;
     font-size: 24px;
     color: var(--blue);
     transition: all 0.25s;
 }

 .category-card:hover .cat-icon-wrap {
     background: linear-gradient(135deg, var(--blue), var(--navy-mid));
     color: #fff;
 }

 .cat-name {
     font-size: 13px;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 4px;
 }

 .cat-count {
     font-size: 11px;
     color: var(--text-muted);
     font-weight: 500;
 }

 .category-card.more-card .cat-icon-wrap {
     background: linear-gradient(135deg, #f0fdf4, #dcfce7);
     color: var(--green);
 }

 .category-card.more-card:hover .cat-icon-wrap {
     background: linear-gradient(135deg, var(--green), #15803d);
     color: #fff;
 }

 /* ========== WORKER CARDS ========== */
 .workers-section {
     padding: 48px 0;
     background: var(--surface);
 }

 /* Slider */
 .slider-outer {
     overflow: hidden;
     position: relative;
 }

 .slider-track {
     display: flex;
     gap: 16px;
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     will-change: transform;
 }

 .worker-card {
     background: #fff;
     border: 1.5px solid var(--border);
     border-radius: 18px;
     overflow: hidden;
     transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
     /* flex-shrink: 0; */
 }

 .worker-card:hover {
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
     transform: translateY(-4px);
     border-color: transparent;
 }

 /* Image square fix */
 .worker-img-wrap {
     position: relative;
     width: 100%;
     aspect-ratio: 1 / 1;
     overflow: hidden;
     background: #f1f5f9;
 }

 .worker-img-wrap img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     transition: transform 0.5s;
 }

 .worker-card:hover .worker-img-wrap img {
     transform: scale(1.05);
 }

 .verified-tag {
     position: absolute;
     top: 12px;
     left: 12px;
     background: linear-gradient(135deg, var(--green), #15803d);
     color: #fff;
     font-size: 10px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 20px;
     display: flex;
     align-items: center;
     gap: 4px;
     box-shadow: 0 3px 10px rgba(22, 163, 74, 0.4);
     letter-spacing: 0.3px;
 }

 .worker-rating-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     background: rgba(15, 23, 42, 0.75);
     color: #fbbf24;
     font-size: 11px;
     font-weight: 700;
     padding: 4px 9px;
     border-radius: 20px;
     backdrop-filter: blur(4px);
     display: flex;
     align-items: center;
     gap: 3px;
 }

 .worker-info {
     padding: 16px 18px 18px;
 }

 .worker-name {
     font-size: 16px;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 2px;
 }

 .worker-profession {
     font-size: 12px;
     color: var(--blue);
     font-weight: 600;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .worker-profession::before {
     content: '';
     width: 14px;
     height: 2px;
     background: var(--blue);
     border-radius: 2px;
 }

 .worker-meta {
     font-size: 12px;
     color: var(--text-muted);
     display: flex;
     align-items: center;
     gap: 6px;
     margin-bottom: 5px;
 }

 .worker-meta i {
     color: var(--blue);
     width: 12px;
 }

 .worker-divider {
     height: 1px;
     background: var(--border);
     margin: 12px 0;
 }

 .worker-actions {
     display: flex;
     gap: 8px;
     align-items: center;
 }

 .btn-icon-round {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     border: 1.5px solid var(--border);
     color: var(--text-muted);
     background: #fff;
     cursor: pointer;
     transition: all 0.2s;
     flex-shrink: 0;
 }

 /* Call button — original color always visible */
 /* .btn-icon-round.phone {
     background: #dcfce7;
     border-color: #16a34a;
     color: #16a34a;
 } */

 .btn-icon-round.phone {
     background: #16a34a;
     color: #fff;
     border-color: #16a34a;
 }

 /* WhatsApp button — original color always visible */
 /* .btn-icon-round.wa {
     background: #d1fae5;
     border-color: #25d366;
     color: #25d366;
 } */

 .btn-icon-round.wa {
     background: #25d366;
     color: #fff;
     border-color: #25d366;
 }

 /* View Profile — smaller & compact */
 .btn-view {
     flex: 1;
     background: linear-gradient(135deg, var(--blue), var(--navy-mid));
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     border: none;
     border-radius: 8px;
     padding: 7px 10px;
     cursor: pointer;
     transition: all 0.2s;
     letter-spacing: 0.3px;
 }

 .btn-view:hover {
     box-shadow: 0 6px 18px rgba(26, 86, 219, 0.35);
     transform: translateY(-1px);
 }

 /* Dots */
 .dots-wrap {
     display: flex;
     justify-content: center;
     gap: 6px;
     margin-top: 28px;
 }

 .p-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #cbd5e1;
     border: none;
     cursor: pointer;
     transition: all 0.3s;
     padding: 0;
 }

 .p-dot.active {
     width: 24px;
     border-radius: 4px;
     background: var(--blue);
 }


.workers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* mobile: 2 কলাম */
    gap: 16px;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .workers-grid {
        grid-template-columns: repeat(3, 1fr);  /* tablet: 3 কলাম */
    }
}

@media (min-width: 1200px) {
    .workers-grid {
        grid-template-columns: repeat(4, 1fr);  /* desktop: 4 কলাম */
    }
}
 /* Responsive */
 @media (max-width: 575px) {
     .section-title {
         font-size: 20px;
     }
 }

 

 /*  */

 /*  */
 @media (max-width: 575px) {
     .btn-view {
         font-size: 10px;
         padding: 7px 6px;
         white-space: nowrap;
     }

     .btn-icon-round {
         width: 30px;
         height: 30px;
         font-size: 12px;
     }

     .worker-actions {
         gap: 5px;
     }
 }

 /*  */
 /* ========== STATS ========== */
 .stats-section {
     background: linear-gradient(135deg, var(--navy) 0%, #0d2a52 50%, var(--navy-mid) 100%);
     padding: 52px 0;
     position: relative;
     overflow: hidden;
 }

 .stats-section::before {
     content: '';
     position: absolute;
     top: -60px;
     right: -60px;
     width: 280px;
     height: 280px;
     border-radius: 50%;
     background: rgba(26, 86, 219, 0.12);
 }

 .stats-section::after {
     content: '';
     position: absolute;
     bottom: -40px;
     left: -40px;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: rgba(22, 163, 74, 0.08);
 }

 .stat-card {
     display: flex;
     align-items: center;
     gap: 18px;
     position: relative;
     z-index: 1;
 }

 .stat-icon-wrap {
     width: 58px;
     height: 58px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: #60a5fa;
     flex-shrink: 0;
     backdrop-filter: blur(4px);
 }

 .stat-num {
     font-size: 30px;
     font-weight: 900;
     color: #fff;
     line-height: 1;
     letter-spacing: -1px;
 }

 .stat-label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.55);
     margin-top: 3px;
     font-weight: 500;
     letter-spacing: 0.3px;
 }

 .stat-divider {
     width: 1px;
     height: 54px;
     background: rgba(255, 255, 255, 0.1);
 }

 @media (max-width: 767px) {
     .stats-section {
         padding: 36px 0;
     }

     .stat-card {
         gap: 10px;
     }

     .stat-icon-wrap {
         width: 40px;
         height: 40px;
         font-size: 16px;
         border-radius: 10px;
     }

     .stat-num {
         font-size: 18px;
         letter-spacing: -0.5px;
     }

     .stat-label {
         font-size: 10px;
     }
 }



 /* ===== HOW IT WORKS ===== */
 .how-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #f0faf5 0%, #e8f4fd 50%, #f0faf5 100%);
 }

 .how-title-block {
     text-align: center;
     margin-bottom: 56px;
 }

 .how-eyebrow {
     display: inline-block;
     background: #e8f5ee;
     color: #16a34a;
     border: 1.5px solid #bbf7d0;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1.5px;
     padding: 5px 18px;
     margin-bottom: 14px;
 }

 .how-main-title {
     font-size: 2.6rem;
     font-weight: 800;
     color: #0f2a1e;
     margin-bottom: 14px;
 }

 .how-main-title span {
     position: relative;
     display: inline-block;
 }

 .how-main-title span::after {
     content: '';
     display: block;
     height: 4px;
     background: #16a34a;
     border-radius: 2px;
     margin-top: 4px;
 }

 .how-subtitle {
     font-size: 1rem;
     color: #4b5563;
     line-height: 1.8;
 }

 .how-step-card {
     background: #fff;
     border-radius: 20px;
     padding: 36px 28px 28px;
     position: relative;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
     transition: all 0.3s;
 }

 .how-step-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 16px 40px rgba(22, 163, 74, 0.12);
 }

 .step-badge {
     position: absolute;
     top: -16px;
     left: 24px;
     background: #16a34a;
     color: #fff;
     font-size: 13px;
     font-weight: 800;
     padding: 5px 14px;
     border-radius: 8px;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
 }

 .step-illustration {
     height: 150px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f3f9ff;
     border-radius: 14px;
     margin-bottom: 22px;
     overflow: hidden;
 }

 .step-card-title {
     font-size: 1.1rem;
     font-weight: 800;
     color: #0f2a1e;
     margin-bottom: 8px;
 }

 .step-underline {
     width: 32px;
     height: 3px;
     background: #16a34a;
     border-radius: 2px;
     margin-bottom: 16px;
 }

 .step-checklist {
     list-style: none;
     padding: 0;
     margin-bottom: 16px;
 }

 .step-checklist li {
     font-size: 13.5px;
     color: #374151;
     padding: 5px 0;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .step-checklist li i {
     color: #16a34a;
     font-size: 14px;
     flex-shrink: 0;
 }

 .step-note {
     font-size: 13px;
     color: #6b7280;
     line-height: 1.6;
     border-top: 1px solid #f3f4f6;
     padding-top: 12px;
     margin: 0;
 }

 .step-arrow {
     position: absolute;
     top: 50%;
     right: -18px;
     transform: translateY(-50%);
     z-index: 2;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: #fff;
     border: 2px solid #d1fae5;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #16a34a;
     font-size: 14px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 /* Trust Bar */
 .how-trust-bar {
     display: flex;
     gap: 0;
     justify-content: center;
     align-items: flex-start;
     flex-wrap: wrap;
     margin-top: 52px;
     background: #fff;
     border-radius: 20px;
     padding: 32px 24px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
 }

 .trust-item {
     flex: 1;
     min-width: 140px;
     max-width: 200px;
     text-align: center;
     padding: 12px 10px;
 }

 .trust-icon {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 12px;
     font-size: 22px;
 }

 .trust-title {
     font-size: 13px;
     font-weight: 700;
     color: #111827;
     margin-bottom: 6px;
 }

 .trust-desc {
     font-size: 12px;
     color: #6b7280;
     line-height: 1.5;
 }

 @media (max-width: 767px) {
     .how-main-title {
         font-size: 1.9rem;
     }

     .step-arrow {
         display: none !important;
     }

     .trust-item {
         min-width: 130px;
     }
 }

 /* ========== CTA ========== */
 .cta-section {
     padding: 20px 0 72px;
 }

 .cta-card {
     background: linear-gradient(135deg, var(--green) 0%, #15803d 60%, #14532d 100%);
     border-radius: 24px;
     padding: 48px 52px;
     display: flex;
     align-items: center;
     gap: 28px;
     position: relative;
     overflow: hidden;
 }

 .cta-card::before {
     content: '';
     position: absolute;
     right: -60px;
     top: -60px;
     width: 220px;
     height: 220px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.07);
 }

 .cta-card::after {
     content: '';
     position: absolute;
     left: 30%;
     bottom: -40px;
     width: 140px;
     height: 140px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
 }

 .cta-illus {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.14);
     border: 2px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 36px;
     color: #fff;
     flex-shrink: 0;
     z-index: 1;
 }

 .cta-text {
     flex: 1;
     z-index: 1;
 }

 .cta-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(20px, 3vw, 28px);
     font-weight: 800;
     color: #fff;
     margin-bottom: 8px;
 }

 .cta-desc {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
 }

 .btn-cta {
     background: #fff;
     color: var(--green);
     font-weight: 800;
     font-size: 14px;
     padding: 14px 30px;
     border-radius: 12px;
     border: none;
     white-space: nowrap;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     z-index: 1;
     transition: all 0.2s;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .btn-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
     color: var(--green);
 }

 /* ========== FOOTER ========== */
 .footer {
     background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%);
     padding: 64px 0 0;
     position: relative;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--blue), var(--green));
 }

 .footer-brand-name {
     font-size: 22px;
     font-weight: 900;
     color: #fff;
     letter-spacing: -0.3px;
 }

 .footer-brand-name span {
     color: #60a5fa;
 }

 .footer-brand-sub {
     font-size: 8px;
     letter-spacing: 2px;
     color: rgba(255, 255, 255, 0.3);
     margin-top: 2px;
 }

 .footer-desc {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.48);
     line-height: 1.8;
     margin: 14px 0 22px;
 }

 .footer-social {
     display: flex;
     gap: 10px;
 }

 .fsocial {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.07);
     border: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.55);
     font-size: 14px;
     text-decoration: none;
     transition: all 0.2s;
 }

 .fsocial:hover {
     background: var(--blue);
     color: #fff;
     border-color: var(--blue);
     transform: translateY(-2px);
 }

 .footer-col-title {
     font-size: 13px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 20px;
     letter-spacing: 0.3px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-col-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 24px;
     height: 2px;
     background: var(--blue);
     border-radius: 2px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.48);
     text-decoration: none;
     transition: color 0.2s;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .footer-links a::before {
     content: '›';
     color: var(--blue);
     font-size: 16px;
     line-height: 1;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.07);
     padding: 18px 0;
     margin-top: 48px;
     text-align: center;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.28);
 }

 /* ========== RESPONSIVE ========== */
 @media (max-width: 991px) {
     .stat-divider {
         display: none;
     }

     .stat-card {
         justify-content: center;
         flex-direction: column;
         text-align: center;
     }

     .stat-icon-wrap {
         margin: 0 auto;
     }

     .cta-card {
         flex-direction: column;
         text-align: center;
         padding: 36px 24px;
     }

     .cta-illus {
         margin: 0 auto;
     }

     .step-connector {
         display: none;
     }

     .how-step-card {
         margin-bottom: 24px;
     }
 }

 @media (max-width: 767px) {
     .slide-title {
         font-size: 24px;
     }

     .slide-badge {
         font-size: 10px;
     }

     .slide-desc {
         font-size: 13px;
     }

     .categories-section {
         padding: 40px 0 32px;
     }

     .search-row {
         flex-direction: column;
     }
 }

 @media (min-width: 1400px) {
     .container {
         max-width: 1320px;
     }
 }

 @media (min-width: 1920px) {
     .container {
         max-width: 1560px;
     }

     .hero-slider {
         height: 700px;
     }
 }

 /*  */
 /* ===== SIDE FLOATING JOIN NOW ===== */
 .btn-side-join {
     position: fixed;
     right: 24px;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1030;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
 }

 .side-join-inner {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(135deg, #1aa34a, #16863F);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     box-shadow: 0 6px 24px rgba(22, 134, 63, 0.5);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2;
 }

 .side-join-inner i {
     font-size: 22px;
     color: #fff;
     transition: transform 0.3s;
 }

 /* Pulse rings */
 .side-join-ripple {
     position: absolute;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(22, 134, 63, 0.35);
     animation: join-pulse 2s ease-out infinite;
     z-index: 1;
 }

 .side-join-ripple.delay {
     background: rgba(22, 134, 63, 0.2);
     animation-delay: 0.7s;
 }

 @keyframes join-pulse {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     100% {
         transform: scale(2.2);
         opacity: 0;
     }
 }

 /* Hover */
 .btn-side-join:hover .side-join-inner {
     transform: scale(1.12);
     box-shadow: 0 10px 32px rgba(22, 134, 63, 0.65);
 }

 .btn-side-join:hover .side-join-inner i {
     transform: rotate(-10deg) scale(1.1);
 }

 /* Tooltip */
 .btn-side-join::after {
     content: 'Join Now';
     position: absolute;
     right: 72px;
     background: #16863F;
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     padding: 6px 12px;
     border-radius: 6px;
     white-space: nowrap;
     opacity: 0;
     pointer-events: none;
     transition: all 0.25s;
     letter-spacing: 0.3px;
     box-shadow: 0 4px 12px rgba(22, 134, 63, 0.35);
 }

 .btn-side-join::before {
     content: '';
     position: absolute;
     right: 66px;
     border: 6px solid transparent;
     border-left-color: #16863F;
     opacity: 0;
     pointer-events: none;
     transition: all 0.25s;
 }

 .btn-side-join:hover::after,
 .btn-side-join:hover::before {
     opacity: 1;
 }

 /*  */


/* ===== SECTION SHARED ===== */
.kl-section {
    padding: 36px 0;
}

.kl-section-white {
    background: var(--white);
}

.kl-section-gray {
    background: var(--bg-gray);
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-main);
    margin-bottom: 10px;
}

.section-underline {
    width: 44px;
    height: 3px;
    background: var(--green-main);
    border-radius: 2px;
    margin: 0 auto 14px;
}

.section-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== FEATURE CARDS ===== */
.feat-card {
    background: var(--white);
    border: 1px solid var(--green-border);
    border-radius: 14px;
    padding: 26px 16px 22px;
    text-align: center;
    transition: box-shadow .25s ease, transform .25s ease;
    height: 100%;
}

.feat-card:hover {
    box-shadow: 0 10px 32px rgba(45, 122, 79, .14);
    transform: translateY(-5px);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green-main);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-card p {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.45;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    height: 6px;
    background: var(--bg-gray);
}









/* ── Slide spacer ── */
.slide-spacer {
    height: 160px;
}

/* ── Desktop: absolute positioned (আগের মতো) ── */
.search-desktop-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 50;
}
.search-desktop-wrap .slide-search {
    max-width: 520px;
    margin: 0;
    background: #fff;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 16px 56px rgba(0,0,0,0.3);
}

/* ── Mobile: normal flow এ slider এর নিচে ── */
.search-mobile-wrap {
    display: none;
    background: #f8fafc;
    padding: 20px 0 0;
}
.search-mobile-wrap .slide-search {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    /* Desktop wrap লুকিয়ে যাবে */
    .search-desktop-wrap {
        display: none;
    }

    /* Mobile wrap দেখা যাবে */
    .search-mobile-wrap {
        display: block;
    }

    /* Slider এর নিচে extra space লাগবে না */
    .slide-spacer {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .search-mobile-wrap {
        padding: 16px 0 0;
    }
    .search-mobile-wrap .slide-search {
        border-radius: 12px;
        padding: 16px;
    }
    .slide-spacer {
        height: 20px;
    }
}