/* Brand Guide line changes as per figma  */
:root {
    --primary: #093181;
    --secondary: #12C571;
    --primary-text: #151515;
    --secondary-text: #334155;
    --border: #D0D7E0;
    --white: #FFFFFF;
    --muted: #475569;
    --h1-size: 46px;
    --h2-size: 36px;
    --h3-size: 22px;
    --h4-size: 20px;
    --h5-size: 20px;
    --h6-size: 16px;
    --fs-24: 22px;
    --fs-18: 18px;
}

@media screen and (max-width:991.98px) {
    :root {
        --h1-size: 34px;
        --h2-size: 30px;
        --h3-size: 24px;
        --h4-size: 20px;
        --h5-size: 18px;
        --h6-size: 16px;
        --fs-24: 20px;
        --fs-18: 16px;
    }
}

@media screen and (max-width:575.98px) {
    :root {
        --h1-size: 32px;
        --h2-size: 28px;
        --h3-size: 22px;
        --h4-size: 18px;
        --h5-size: 16px;
        --h6-size: 16px;
    }

    h1 {
        line-height: 48px;
    }

    h2 {
        line-height: 24px;
    }
    .pb-16 {
        padding-bottom: 0px;
    }

    h3 {
        line-height: 34px;
    }

    h4 {
        line-height: 28px;
    }

    h5 {
        line-height: 24px;
    }

    h6 {
        line-height: 20px;
    }
}

h2.fw-bold.mb-3.text-lg-start.text-md-center.text-center {
    font-weight: 600 !important;
}
.text-muted {
    color: var(--primary);
}
.text-gry {
    color: var(--muted);
}.text-primary {
    color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}
.container{
    max-width: 1410px;
    width: 100%;
    padding: 0 30px;
}
.btn-small {
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.btn-medium {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary);
    border-radius: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;

}


.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-small-pill {
    padding: 10px 32px;
    font-size: 18px;
    font-weight: 500;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 28px;
}
.btn.btn-small-pill:hover,.btn.btn-medium-pill:hover,.btn.btn-large-pill:hover,.btn.btn-small:hover  {
    color: #fff;
}

.btn-medium-pill {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
a.btn.btn-medium-pill.active {
    background: #fff;
    color: #093181;
    border: 1px solid #093181;
}
a.btn.btn-medium-pill.active:hover {
    color: #fff;
    border: 1px solid #12c571;
}
.top_header_min .col-md-7 {
    padding-right: 0;
}
.btn-large-pill {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 6px;
}

.btn-small:hover::before,
.btn-medium:hover::before,
.btn-large:hover::before,
.btn-small-pill:hover::before,
.btn-medium-pill:hover::before,
.btn-large-pill:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.btn-small::before,
.btn-medium::before,
.btn-large::before,
.btn-small-pill::before,
.btn-medium-pill::before,
.btn-large-pill::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250%;
    aspect-ratio: 1;
    background: var(--secondary);
    /* Hover color */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.13);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s linear 0s;
    z-index: -1;

}

.btn-hover {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    background: var(--primary);
    /* Default blue color */
    color: #fff;
    border: none;
    z-index: 1;
}



.btn-small:focus,
.btn-medium:focus,
.btn-large:focus,
.btn-small-pill:focus,
.btn-medium-pill:focus,
.btn-large-pill:focus {
    border: 2px solid #c6cede;
}

.btn-small.disabled,
.btn-medium.disabled,
.btn-large.disabled,
.btn-small-pill.disabled,
.btn-medium-pill.disabled,
.btn-large-pill.disabled {
    background: #6B84B4;
    cursor: not-allowed;
}

.btn-outline-small {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.btn-outline-medium {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;

}


.btn-outline-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.btn-outline-small:hover::before,
.btn-outline-medium:hover::before,
.btn-outline-large:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.btn-outline-small:hover,
.btn-outline-medium:hover,
.btn-outline-large:hover {
    color: white;
    border: 1px solid var(--secondary);
}

.btn-outline-small::before,
.btn-outline-medium::before,
.btn-outline-large::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250%;
    aspect-ratio: 1;
    background: var(--secondary);
    /* Hover color */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.13);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s linear 0s;
    z-index: -1;
}


.btn-default-small {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;


}

.btn-default-medium {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.btn-default-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    background: var(--white);
    color: var(--primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-default-small:hover::before,
.btn-default-medium:hover::before,
.btn-default-large:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.btn-default-small:before,
.btn-default-medium::before,
.btn-default-large::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250%;
    aspect-ratio: 1;
    background: var(--secondary);
    /* Hover color */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.13);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s linear 0s;
    z-index: -1;
}

.btn-default-small:focus,
.btn-default-medium:focus,
.btn-default-large:focus {
    border: 4px solid #c6cede;
}

.btn-default-small.disabled,
.btn-default-medium.disabled,
.btn-default-large.disabled {
    background: #d0d7e0;
    color: #09318199;
    cursor: not-allowed;
}



h1 {
    font-size: var(--h1-size);
    font-weight: bold;
    line-height: 56px;
    margin-bottom: 0px;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 0px;
    letter-spacing: -0.3px;

}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 0px;

}

h4 {
    font-size: var(--h4-size);
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 0px;

}

h5 {
    font-size: var(--h5-size);
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;

}

h6 {
    font-size: var(--h6-size);
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0px;

}

h1 small, h1 span {
    font-size: var(--h1-size);
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 0px;
}

h2 small {
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 0px;
}

h3 small {
    font-size: var(--h3-size);
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 0px;
}

h4 small {
    font-size: var(--h4-size);
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 0px;
}
.slick-arrow img {
    width:42px;
    height:42px;
}

@media screen and (max-width: 991px) {
    h1 {
        line-height: 48px;
    }
    h1 small, h1 span{
         line-height: 48px;
    }

    h2 {
        line-height: 44px;
    }

    h3 {
        line-height: 38px;
    }

    h4 {
        line-height: 32px;
    }

    h5 {
        line-height: 26px;
    }

    h6 {
        line-height: 22px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    h1 {
        line-height: 48px;
    }

    h2 {
        line-height: 38px;
    }

    h3 {
        line-height: 34px;
    }

    h4 {
        line-height: 28px;
    }

    h5 {
        line-height: 24px;
    }

    h6 {
        line-height: 20px;
    }
}

p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0px;
    color:rgba(71, 85, 105, 1) !important;
    font-weight: 400;

}

.fs-18 {
    font-size: var(--fs-18);
    line-height: 27px;
    color: rgba(71, 85, 105, 1);
}

.fs-14 {
    font-size: 14px;
    line-height: 21px;
}

.fs-12 {
    font-size: 12px;
    line-height: 18px;
}

.fs-24 {
    font-size: var(--fs-24);
    line-height: 30px;
}

.space-py-80 {
    padding-block: 80px;
}

.space-pt-80 {
    padding-top: 80px;
}

.space-pb-80 {
    padding-bottom: 80px;
}

.space-py-48 {
    padding-block: 26px;
}

.space-pt-48 {
    padding-top: 48px;
}

.space-pb-48 {
    padding-bottom: 48px;
}

.pb-16 {
    padding-bottom: 16px;
}
.pb-40 {
    padding-bottom: 40px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pb-24 {
    padding-bottom: 24px;
}

.space-my-80 {
    margin-block: 80px;
}

.space-mt-80 {
    margin-top: 80px;
}

.space-mb-80 {
    margin-bottom: 80px;
}

.space-my-48 {
    margin-block: 48px;
}

.space-mt-48 {
    margin-top: 48px;
}

.space-mb-48 {
    margin-bottom: 40px;
}

.card-p-24 {
    padding: 18px;
}

.card-gap-24 {
    row-gap: 24px;
}

.feature-card,
.testimonial-card {
    height: 100%;
    display: flex !important;
    flex-direction: column;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.testimonial-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.testimonial-card .card-body .flex-grow-1 {
    margin-bottom: 12px;
}

/* Ensure carousel items have equal height cards */
.review-carousel .item {
    display: flex !important;
    align-items: stretch !important;
}

.review-carousel .item .testimonial-card {
    min-height: 305px;
}

.faq-gap-12 {
    gap: 12px;
}



@media (min-width:576px) and (max-width:991.98px) {
    .space-py-80 {
        padding-block: 48px;
    }

    .space-pt-80 {
        padding-top: 64px;
    }

    .space-pb-80 {
        padding-bottom: 64px;
    }

    .space-py-48 {
        padding-block: 20px;
    }

    .space-pt-48 {
        padding-top: 32px;
    }

    .space-pb-48 {
        padding-bottom: 32px;
    }

    .space-my-80 {
        margin-block: 64px;
    }

    .space-mt-80 {
        margin-top: 64px;
    }

    .space-mb-80 {
        margin-bottom: 64px;
    }

    .space-my-48 {
        margin-block: 32px;
    }

    .space-mt-48 {
        margin-top: 32px;
    }

    .space-mb-48 {
        margin-bottom: 32px;
    }

}


@media screen and (max-width:575.98px) {
    .space-py-80 {
        padding-block: 32px;
    }

    .space-pt-80 {
        padding-top: 48px;
    }

    .space-pb-80 {
        padding-bottom: 48px;
    }

    .space-py-48 {
        padding-block: 24px;
    }

    .space-pt-48 {
        padding-top: 24px;
    }

    .space-pb-48 {
        padding-bottom: 24px;
    }

    .space-my-80 {
        margin-block: 48px;
    }

    .space-mt-80 {
        margin-top: 48px;
    }

    .space-mb-80 {
        margin-bottom: 48px;
    }

    .space-my-48 {
        margin-block: 24px;
    }

    .space-mt-48 {
        margin-top: 24px;
    }

    .space-mb-48 {
        margin-bottom: 24px;
    }
    .container{
    padding: 0 15px;
    }
    #feture-section{
            padding: 20px;
    }

}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.text-color{
   color:#093181
}
/* Decorative bottom-left wave graphic mimicking the design */
.bg-decorations {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

/* ==========================================
       Main Layout Wrapper
       ========================================== */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .faq-container {
        grid-template-columns: 380px 1fr;
        gap: 1.5rem;
        align-items: start;
    }
}

/* ==========================================
       Left Sidebar Layout
       ========================================== */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-title {
    font-size: 2.25rem;
    /* font-weight: 800; */
    line-height: 1.25;
    color: #0c2f7c;
    letter-spacing: -0.02em;
}

@media (min-width: 992px) {
    .faq-title {
        font-size: 2.5rem;
    }
}

/* Demo Contact Card */
.demo-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(12, 47, 124, 0.04), 0 4px 6px -2px rgba(12, 47, 124, 0.02);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Styled Avatar */
.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eef4fc;
    margin-bottom: 24px;
}

.demo-card h3 {
    margin-bottom: 8px;
}

.demo-card p {
    margin-bottom: 16px;
}

/* .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.demo-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2f7c;
}

.demo-card p {
    font-size: 0.925rem;
    color: #4f5a6e;
    line-height: 1.6;
}

.demo-btn {
    width: 100%;
    background-color: #0c2f7c;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.demo-btn:hover {
    background-color: #082156;
    transform: translateY(-1px);
}

.demo-btn:active {
    transform: translateY(1px);
}

/* ==========================================
       Right Column: Accordion Items
       ========================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #cbdbee;
    box-shadow: 0 10px 15px -3px rgba(12, 47, 124, 0.04), 0 4px 6px -2px rgba(12, 47, 124, 0.02);
}

/* Accordion Trigger/Header */
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
    gap: 1rem;
}

.faq-question {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.tab-pane h3{
    font-size: 26px;
}

/* Dynamic Chevron Icon utilizing SVG */
.faq-icon-container {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0c2f7c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon-container svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern zero-to-auto height technique using css grid */
.faq-body-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
    overflow: hidden;
}

.faq-answer {
    padding: 24px;
    padding-top: 0px;
}

/* ==========================================
       Expanded Active States
       ========================================== */
.faq-item.active {
    border-color: #E2E8F0;
    box-shadow: 0 10px 15px -3px rgba(12, 47, 124, 0.04), 0 4px 6px -2px rgba(12, 47, 124, 0.02);
}

.faq-item.active .faq-trigger {
    padding-bottom: 12px;
}

.faq-item.active .faq-body-container {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-icon-container {
    color: #0c2f7c;
    transform: rotate(180deg);
}

/* Custom Toast Notification System (to replace alert()) */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background-color: #0c2f7c;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideIn 0.3s forwards, fadeOut 0.3s forwards 3s;
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-main {
    background-image: url('https://cdn.moonapps.xyz/hrm-live/wp-content/uploads/2026/08/06111222/faq-background.png');
    background-size: 100% 100%;
    background-position: center center;
}
.card-p-24 p {
    color: #475569 !important;
    font-size: 16px !important;
}
.info h6 {
    color: #093181 !important;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
}
/* .icon_list li:after {
    background: url('/hrm/wp-content/uploads/2026/06/Group-1.svg');
} */
