.btn-primary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--theme-primary);
    --bs-btn-border-color: var(--theme-primary);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: #1447e6;
    --bs-btn-hover-border-color: #1447e6;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: #1447e6;
    --bs-btn-active-border-color: #1447e6;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--white);
    --bs-btn-disabled-bg: var(--theme-primary);
    --bs-btn-disabled-border-color: var(--theme-primary);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 40px !important;
    font-weight: 500 !important;
    gap: 8px;
}
.attendance-section {
    padding: 32px 0 16px;
}

.ai-powered-inner .row > [class^="col-"] ,
.attendance-section .row > [class^="col-"] {
	flex: 1 1 auto;
}
.attendance-section-content .badge-custom {
    margin-bottom: 24px;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid #bfdbfe;
    font-weight: 500;
    width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    gap: 0.25rem;
    background-color: #eff6ff;
    color: var(--theme-color);
    font-size: 10px;
    padding: 0.125rem 0.5rem;
    transition: color 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
    .badge-custom {
        font-size: 0.75rem;
    }
}

.attendance-section-content {
    color: var(--white);
    text-align: center;
}
.attendance-section-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}
@media (min-width: 768px) {
   .attendance-section-content h1 {
        margin-bottom: 26px;
    }
}
.attendance-section-content p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.625;
    margin: 0 0 24px 0;
}

@media (min-width: 768px) {
    .attendance-section-content p {
        font-size: 19px;
        margin: 0 0 32px 0;
    }
}

.attendance-section-content .btn {
    font-size: 16px;
}
.attendance-section-content .btn svg {
    margin-left: 0;
    margin-right: 8px;
}

.attendance-section-content .rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.row-gap-hrm {
    row-gap: 24px;
}
@media (min-width: 768px) {
    .row-gap-hrm {
        row-gap: 40px;
    }
    .attendance-section-content .btn {
        font-size: 18px;
    }
}
@media (min-width: 992px) {
    .attendance-section-content .rating-container {
        align-items: flex-start;
    }
    .attendance-section-content {
        text-align: left;
    }
    
}

.attendance-section-content .rating-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--white);
}

.attendance-section-content .rating-value {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.attendance-section-content .star-icon {
    height: 1rem;
    width: 1rem;
    fill: #facc15;
    color: #facc15;
}

.attendance-section-content .divider {
    width: 1px;
    height: 1rem;
    background-color: var(--border, #e5e7eb);
}

.attendance-section-content .font-medium {
    font-weight: 500;
}

.attendance-section-content .small-text {
    font-size: 0.75rem;
}

.attendance-section-form .form-container {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .attendance-section-form .form-container {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .attendance-section-form .form-container {
        padding: 2rem;
    }
}

.attendance-section-form .form-header {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .attendance-section-form .form-header {
        margin-bottom: 1.5rem;
    }
}

.attendance-section-form .form-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .attendance-section-form .form-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .attendance-section-form .form-title {
        font-size: 1.5rem;
    }
}

.attendance-section-form .form-subtitle {
    font-size: 0.75rem;
    color: #4b5563;
}

@media (min-width: 640px) {
    .attendance-section-form .form-subtitle {
        font-size: 0.875rem;
    }
}

.attendance-section-form .form-body {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

@media (min-width: 768px) {
    .attendance-section-form .form-body {
        gap: 0.75rem;
    }
}

.attendance-section-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.form-group span.text-danger {
    font-size: 12px;
}

.attendance-section-form .form-label span {
	color: #ff3a6e;
}

.attendance-section-form .form-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

@media (min-width: 640px) {
    .attendance-section-form .form-label {
        font-size: 0.875rem;
    }
}

.attendance-section-form .form-input,
.attendance-section-form .form-select {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s ease-in-out;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .attendance-section-form .form-input,
    .attendance-section-form .form-select {
        padding: 0.625rem 1rem;
        font-size: 1rem;
    }
}

.attendance-section-form .form-input:focus,
.attendance-section-form .form-select:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--second-color);
}
/* 
.attendance-section-form .nice-select .option:hover, 
.attendance-section-form .nice-select .option.selected.focus {
	color: var(--white);
}
.attendance-section-form .nice-select .option.focus, 
.attendance-section-form .nice-select .list:hover .option.selected,
.attendance-section-form .nice-select .option.selected {
	background-color: var(--second-color) !important;
	color: var(--white) !important;
} */
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: var(--white);
}

.attendance-section-form .form-button:hover {
    background-color: var(--theme-color) !important;
    color: var(--white) !important;
}

@media (min-width: 640px) {
    .attendance-section-form .form-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
.hrm-wrapper .main-home-first-section {
	padding-bottom: 24px;
}
@media (min-width: 768px) {
    .hrm-wrapper .main-home-first-section {
        padding-bottom: 48px;
    }
}
@media (max-width: 480px) {
    .hrm-wrapper .main-home-first-section {
        padding-top: 150px;
    }
}
.hrm-wrapper .main-home-first-section .btn:hover svg path, 
.hrm-wrapper .main-home-first-section .btn:focus svg path {
	fill: currentColor;
}

.attendance-section-form .form-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.attendance-section-form .arrow-icon {
    height: 1rem;
    width: 1rem;
}

@media (min-width: 640px) {
    .attendance-section-form .arrow-icon {
        height: 1.25rem;
        width: 1.25rem;
    }
}

.attendance-section-form .form-note {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

/* AI Power Section Start */
.position-relative {
    position: relative;
}
.ai-powered-section {
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.ai-powered-left .card-container {
    order: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5, #d1fae5);
    border-radius: 1.5rem;
    padding: 2rem;
}

.ai-powered-left .card-shadow {
    position: relative;
    width: 14rem;
    height: 24rem;
    background: linear-gradient(to bottom, #1f2937, #000000);
    border-radius: 1.5rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.ai-powered-left .card-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.ai-powered-left .card-header {
    background: black;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: white;
}

.ai-powered-left .status-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ai-powered-left .signal-bar {
    width: 1rem;
    height: 0.5rem;
    background-color: #34d399;
    border-radius: 0.125rem;
}

.ai-powered-left .dot-text {
    font-size: 0.75rem;
}

.ai-powered-left .image-container {
    position: relative;
    height: 20rem;
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-powered-left .image-wrapper {
    position: relative;
    width: 12rem;
    height: 15rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.ai-powered-left .image-cover {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    color: transparent;
}

.ai-powered-left .pulse-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-powered-left .pulse-box {
    position: relative;
    width: 8rem;
    height: 10rem;
}

.ai-powered-left .border {
    position: absolute;
    border-color: #34d399;
    border-style: solid;
    border-width: 0.25rem;
}

.ai-powered-left .top-left {
    top: -0.5rem;
    left: -0.5rem;
    border-left-width: 0.25rem;
    border-top-width: 0.25rem;
    border-right-width: 0;
    border-bottom-width: 0;
}

.ai-powered-left .top-right {
    top: -0.5rem;
    right: -0.5rem;
    border-right-width: 0.25rem;
    border-top-width: 0.25rem;
    border-left-width: 0;
    border-bottom-width: 0;
}

.ai-powered-left .bottom-left {
    bottom: -0.5rem;
    left: -0.5rem;
    border-left-width: 0.25rem;
    border-bottom-width: 0.25rem;
    border-right-width: 0;
    border-top-width: 0;
}

.ai-powered-left .bottom-right {
    bottom: -0.5rem;
    right: -0.5rem;
    border-right-width: 0.25rem;
    border-bottom-width: 0.25rem;
    border-left-width: 0;
    border-top-width: 0;
}

.ai-powered-left .pulse-border {
    position: absolute;
    inset: 0;
    border: 2px solid #34d399;
    border-radius: 0.5rem;
    animation: pulse 2s infinite;
}

.ai-powered-left .ping {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #34d399;
    border-radius: 9999px;
    animation: ping 2s infinite;
}

.ai-powered-left .ping1 {
    top: 2rem;
    left: 2rem;
    animation-delay: 0s;
}

.ai-powered-left .ping2 {
    top: 2rem;
    right: 2rem;
    animation-delay: 0.2s;
}

.ai-powered-left .ping3 {
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ai-powered-left .badge-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--theme-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.ai-powered-left .badge-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ai-powered-left .card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--theme-color), var(--theme-color));
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-powered-left .icon-circle {
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-powered-left .icon-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--theme-color);
}

.ai-powered-left .footer-text .user-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.ai-powered-left .footer-text .login-info {
    font-size: 0.75rem;
    opacity: 0.9;
}

.ai-powered-left .badge-top-left {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background-color: var(--theme-color);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(12, 175, 96, 0.5);
    animation: bounce 2s infinite;
}

.ai-powered-left .badge-bottom-right {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #16a34a;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(22, 163, 74, 0.5);
}

.ai-powered-left .badge-center-right {
    position: absolute;
    top: 50%;
    right: -2rem;
    background-color: #7c3aed;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(124, 58, 237, 0.5);
    transform: translateY(-50%) rotate(-12deg);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ai-powered-right .content-container {
    margin-top: 0;
}

.ai-powered-right .content-title {
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .ai-powered-left .card-shadow {
       width: 16rem;
    }
    .ai-powered-section {
        padding: 48px 0;
    }
}

.ai-powered-right .content-description {
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .ai-powered-right .content-description {
        margin-bottom: 24px;
    }
}

.workforce-section-inner .features-list {
    margin-bottom: 0;
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .features-list {
        gap: 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font: var(--common-text);
}
.feature-text {
    font: var(--common-text);

}

@media (min-width: 768px) {
    .feature-item {
    }
}

.feature-icon-circle {
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    background-color: #0caf6024;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check {
    color: var(--theme-color);
    font-weight: 700;
}

/* AI Power Section End */

.workforce-section {
	padding: 40px 0;
}

.workforce-section-inner .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.workforce-section-inner .section-title {
    font-weight: 700;
    text-wrap: balance;
	padding-bottom: 30px;
	margin-bottom: 0;
}

.workforce-section-inner .section-subtitle {
    font-size: 1.25rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.workforce-section-inner .section-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workforce-section-inner .two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .workforce-section-inner .two-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .workforce-section {
        padding: 48px 0;
    }
    .workforce-section-inner .section-title {
        padding-bottom: 48px;
    }
    .section-container > div:nth-child(even) > div:nth-child(1) {
        order: 2;
    }
    .section-container > div:nth-child(even) > div:nth-child(2) {
        order: 1;
    }
        
    .workforce-section-inner .section-container {
        gap: 2.5rem;
    }

}

.workforce-section-inner .space-y-large {
    row-gap: 1.5rem;
}

.workforce-section-inner .space-y-medium {
    row-gap: 1rem;
}

.workforce-section-inner .flex {
    display: flex;
}

.workforce-section-inner .items-center {
    align-items: center;
}

.workforce-section-inner .gap-medium {
    column-gap: 0.75rem;
}

.workforce-section-inner .dot-blue {
    min-width: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--theme-color);
    border-radius: 9999px;
}

.workforce-section-inner .text-foreground {
    font: var(--common-text);
}

.workforce-section-inner .text-muted-large {
    margin-bottom: 24px;
}

.workforce-section-inner .heading-large {
    margin-bottom: 24px;
}
@media (max-width: 767px) {
    .workforce-section-inner .heading-large {
        font-size: 24px;
        margin-bottom: 14px;
    }
    .workforce-section-inner .text-muted-large {
        margin-bottom: 14px;
    }
}

.workforce-section-inner .bg-gradient {
    background-image: linear-gradient(135deg, var(--light-color), var(--light-color));
}
.workforce-section-inner .bg-gradient-dark {
    background-image: linear-gradient(135deg, var(--light-color), var(--light-color));
}

.workforce-section-inner .rounded-xl {
    border-radius: 1rem;
}

.workforce-section-inner .p-large {
    padding: 2rem;
}

.workforce-section-inner .shadow-sm {
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.workforce-section-inner .info-card {
    position: relative;
    /* background: linear-gradient(135deg, var(--light-color), var(--light-color));  */
    border-radius: 1rem;
    padding: 1rem;
}

.workforce-section-inner .icon-clock-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.workforce-section-inner .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.workforce-section-inner .shift-cards {
    margin-top: 4rem;
    row-gap: 1rem;
}

.workforce-section-inner .flex {
    display: flex;
}

.workforce-section-inner .gap-4 {
    gap: 1rem;
}

.workforce-section-inner .shift-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    flex: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.workforce-section-inner .items-center {
    align-items: center;
}

.workforce-section-inner .gap-2 {
    gap: 0.5rem;
}

.workforce-section-inner .mb-2 {
    margin-bottom: 0.5rem;
}

.workforce-section-inner .text-sm {
    font-size: 0.875rem;
}

.workforce-section-inner .text-gray-600 {
    color: #4b5563;
}

.workforce-section-inner .font-medium {
    font-weight: 500;
}

.workforce-section-inner .attendance-table {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}
.workforce-section-inner .font-medium {
    font-weight: 500;
}

.workforce-section-inner .grid {
    display: grid;
}

.workforce-section-inner .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.workforce-section-inner .gap-3 {
    gap: 0.75rem;
}

.workforce-section-inner .text-xs {
    font-size: 0.75rem;
}

.workforce-section-inner .font-medium {
    font-weight: 500;
}

.workforce-section-inner .text-gray-400 {
    color: #9ca3af;
}

.workforce-section-inner .text-green-500 {
    color: var(--theme-color);
}

.workforce-section-inner .text-center {
    text-align: center;
}

.workforce-section-inner .profile-image {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: transparent;
}

.list-data > div + div {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .list-data > div + div {
        margin-top: 12px;
    }
}

.workforce-section-inner .attendance-card {
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.workforce-section-inner .attendance-card .header .status {
    color: var(--theme-color);
    background-color: #d1fae5;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.workforce-section-inner .attendance-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.workforce-section-inner .attendance-card .details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 16px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px
}

.workforce-section-inner .attendance-card .details .row > [class*="col-"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workforce-section-inner .attendance-card .details .user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workforce-section-inner .attendance-card .details .avatar {
    background-color: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--theme-color);
}

.workforce-section-inner .attendance-card .details .username {
    font-size: 0.875rem;
}

.workforce-section-inner .attendance-card .details .time {
    font-size: 0.75rem;
    color: var(--theme-color);
}

.workforce-section-inner .attendance-card .lens {
    background-color: var(--theme-color);
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin: 0 auto 0.25rem;
}

.workforce-section-inner .attendance-card .lens-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.workforce-section-inner .attendance-card .lens-subtitle {
    font-size: 0.75rem;
    text-align: center;
}

.workforce-section-inner .attendance-card {
    position: relative;
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow-lg */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: #4b5563; /* text-gray-600 */
    font-weight: 500;
}

.workforce-section-inner .attendance-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #16a34a; /* text-green-600 */
    background-color: #d1fae5; /* bg-green-100 */
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.workforce-section-inner .attendance-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workforce-section-inner .attendance-card__user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workforce-section-inner .attendance-card__avatar {
    background-color: #d1fae5; /* bg-blue-100 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--theme-color); /* text-blue-600 */
}

.workforce-section-inner .attendance-card__username {
    font-size: 0.875rem;
    color: #4b5563;
}

.workforce-section-inner .attendance-card__time {
    font-size: 0.75rem;
    color: #16a34a;
}

.workforce-section-inner .attendance-card__lens {
    background-color: var(--theme-color); /* bg-blue-600 */
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 0.25rem;
    text-align: center;
}

.workforce-section-inner .attendance-card__lens-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
}

.workforce-section-inner .attendance-card__lens-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}


.workforce-section-inner .payroll-card {
    position: relative;
    background-color: var(--light-color); /* from-blue-50 */
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workforce-section-inner .payroll-header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.workforce-section-inner .payroll-badge {
    font-size: 12px;
    background-color: #d1fae5; /* bg-blue-100 */
    color: var(--theme-color); /* text-blue-600 */
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem; /* rounded */
}

.workforce-section-inner .payroll-details {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
}

.workforce-section-inner .payroll-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workforce-section-inner .payroll-amount {
    font-weight: 500;
}

.workforce-section-inner .payroll-deduction {
    color: #dc2626; /* text-red-600 */
    font-weight: 400;
}

.workforce-section-inner .payroll-net {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
}

.workforce-section-inner .payroll-net span:first-child {
    font-weight: 500;
    color: #1f2937; /* text-gray-800 */
}

.workforce-section-inner .payroll-net-amount {
    font-weight: 700;
    color: var(--theme-color);
}

.workforce-section-inner .payroll-calculation {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.workforce-section-inner .payroll-icon {
    color: var(--theme-color);
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
}

.workforce-section-inner .calculation-text {
    font-weight: 500;
    font-size: 12px;
}

.workforce-section-inner .calculation-subtext {
    font-size: 0.75rem;
}


.workforce-section-inner .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .workforce-section-inner .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .workforce-section-inner .payroll-card {
        padding: 2rem;
    }
    .workforce-section-inner .info-card {
        padding: 2rem;
    }
    .workforce-section-inner .stats-grid {
        margin-top: 3rem;
    }
}

.workforce-section-inner .stat-item {
    text-align: center;
    cursor: pointer;
}

.workforce-section-inner .stat-item:hover .stat-value {
    transform: scale(1.1);
}

.workforce-section-inner .stat-value {
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.workforce-section-inner .stat-blue {
    color: var(--theme-color);
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .workforce-section-inner .stat-blue {
        font-size: 1.875rem;
    }
}

.workforce-section-inner .stat-gray {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .workforce-section-inner .stat-gray {
        font-size: 1.875rem;
    }
}

.workforce-section-inner .stat-label {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .workforce-section-inner .stat-label {
        font-size: 0.875rem;
    }
}




















.manual-hr-section {
  padding: 40px 0;
  background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
}
.manual-hr-section .header-block {
	margin-bottom: 20px;
}
.manual-hr-section .text-center {
  text-align: center;
}
.manual-hr-section .header-block h2 {
  font-weight: 700;
}
.manual-hr-section .header-block .highlight {
  color: var(--theme-color);
}
.manual-hr-section .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d1fae5;
  color: var(--theme-color);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.manual-hr-section .tag .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--theme-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.manual-hr-section .grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  
    .manual-hr-section {
        padding: 3rem 0;
    }
    .manual-hr-section .header-block {
        margin-bottom: 48px;
    }
}
.manual-hr-section .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.manual-hr-section .card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-left: 4px solid transparent;
  transition: box-shadow 0.2s;
}
.manual-hr-section .card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.manual-hr-section .card.blue-border {
  border-left-color: var(--theme-color);
}
.manual-hr-section .card.gray-border {
  border-left-color: #6b7280;
}
.manual-hr-section .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.manual-hr-section .icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}
.manual-hr-section .icon.blue-bg {
  background: #d1fae5;
  color: var(--theme-color);
}
.manual-hr-section .icon.gray-bg {
  background: #f3f4f6;
  color: #4b5563;
}
.manual-hr-section .icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}
.manual-hr-section .subtext {
  font-size: 0.875rem;
  color: var(--theme-color);
}
.manual-hr-section .desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
.manual-hr-section .cta {
  text-align: center;
  background: linear-gradient(to right, var(--theme-color), var(--theme-color));
  border-radius: 0.75rem;
  color: white;
  padding: 1.5rem;
}
.manual-hr-section .cta h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.manual-hr-section .cta p {
  color: var(--white);
  margin-bottom: 1rem;
}
.manual-hr-section .cta button.btn svg path {
	fill: transparent !important;
}
.manual-hr-section .cta button:focus,
.manual-hr-section .cta button:hover {
  background: var(--white);
  color: var(--second-color);
}
.manual-hr-section .arrow-icon {
  width: 1rem;
  height: 1rem;
}



.manual-hr-section .visual-container {
  position: relative;
  height: 500px;
  display: none;
}
@media (min-width: 992px) {
    .manual-hr-section .visual-container {
        display: block;
        height: 600px;
    }
    .manual-hr-section .grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}
.manual-hr-section .visual-container .visual-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.manual-hr-section .visual-container .visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.manual-hr-section .visual-container .main-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(10%,-50%)rotateX(15deg)rotateY(-10deg)translateZ(50px)scale(1.1);
  background: linear-gradient(to bottom right, var(--theme-color), var(--theme-color));
  color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  width: 280px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  gap: 12px;
}
@keyframes float {
  0%, 100% {
	transform: translate(10%,-50%)rotateX(15deg)rotateY(-10deg)translateZ(50px)scale(1.1)translateY(0);
  }
  50% {
	transform: translate(10%,-50%)rotateX(15deg)rotateY(-10deg)translateZ(50px)scale(1.1)translateY(-10px);
  }
}
.manual-hr-section .visual-container .icon-clock {
  height: 2rem;
  width: 2rem;
  margin-right: 0.75rem;
}
.manual-hr-section .visual-container .card {
  position: absolute;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.manual-hr-section .visual-container .dashboard {
  top: 10%;
  left: 15%;
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  width: 180px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(20px);
}
.manual-hr-section .visual-container .payroll {
  bottom: 15%;
  left: 10%;
  background: linear-gradient(to bottom right, var(--theme-color), var(--theme-color));
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  width: 200px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(30px);
  box-shadow: none;
  border: 0;
}
.manual-hr-section .visual-container .compliance {
  bottom: 25%;
  right: 15%;
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  width: 190px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(25px);
}
.manual-hr-section .visual-container .shifts {
  top: 20%;
  right: 10%;
  background: #d1fae5;
  color: var(--theme-color);
  border: 1px solid #d1fae5;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  width: 160px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(15px);
}
.manual-hr-section .visual-container .tax {
  top: 50%;
  right: 5%;
  background: #eff6ff;
  color: var(--theme-color);
  border: 1px solid #d1fae5;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  width: 140px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(12px);
}
.manual-hr-section .visual-container .pf {
  bottom: 10%;
  right: 25%;
  background: #f9fafb;
  color: #4b5563;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  width: 100px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(5px);
}
.manual-hr-section .visual-container .esi {
  top: 60%;
  left: 20%;
  background: #f9fafb;
  color: #4b5563;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  width: 100px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(7px);
}
.manual-hr-section .visual-container .pt {
  top: 15%;
  right: 30%;
  background: #eff6ff;
  color: var(--theme-color);
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  width: 90px;
  transform: rotateX(15deg) rotateY(-10deg) translateZ(6px);
}

.form_invalid {
    border-radius: 4px;
    border: solid 2px #f8797f;
    padding: 12px 14px 11px 44px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%23FFFFFF;%7d %3c/style%3e%3cg id='c-error' transform='translate(1 1)'%3e%3cg id='Oval'%3e%3cpath class='st0' d='M9,19C3.5,19-1,14.5-1,9C-1,3.5,3.5-1,9-1c5.5,0,10,4.5,10,10C19,14.5,14.5,19,9,19z M9,1C4.6,1,1,4.6,1,9 s3.6,8,8,8s8-3.6,8-8S13.4,1,9,1z'/%3e%3c/g%3e%3cg id='i-remove' transform='translate(5 5)'%3e%3cg id='Path'%3e%3cpath class='st0' d='M0.5,8.5C0.2,8.5,0,8.4-0.2,8.2c-0.4-0.4-0.4-1,0-1.4l7-7c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-7,7 C1,8.4,0.8,8.5,0.5,8.5z'/%3e%3c/g%3e%3cg id='Path-2'%3e%3cpath class='st0' d='M7.5,8.5C7.2,8.5,7,8.4,6.8,8.2l-7-7c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l7,7c0.4,0.4,0.4,1,0,1.4 C8,8.4,7.8,8.5,7.5,8.5z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e") no-repeat 15px 12px #f8797f;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 8px;
}

.form_sent {
    border-radius: 4px;
    border: solid 2px #00ad8a;
    padding: 12px 14px 11px 44px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%23FFFFFF;%7d %3c/style%3e%3cg id='c-check' transform='translate(1 1)'%3e%3cg id='Oval'%3e%3cpath class='st0' d='M9,19C3.5,19-1,14.5-1,9C-1,3.5,3.5-1,9-1c5.5,0,10,4.5,10,10C19,14.5,14.5,19,9,19z M9,1C4.6,1,1,4.6,1,9 s3.6,8,8,8s8-3.6,8-8S13.4,1,9,1z'/%3e%3c/g%3e%3cg id='Path'%3e%3cpath class='st0' d='M7.1,13.3c-0.3,0-0.5-0.1-0.7-0.3L3.3,9.8c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l2.4,2.4l5.5-5.5 c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4L7.8,13C7.6,13.2,7.4,13.3,7.1,13.3z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e") no-repeat 15px 12px #00ad8a;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
    font-size: 15px;
    max-width: 500px;
	margin: 0 auto 8px;
}