@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bs-brand: #0b1a4a;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-link: #0d6efd;
    --bs-link-outline: #000;
    --bs-btn-bg: #dc3545;
    --bs-btn-border: #dc3545;

}


body {
    font-family: var(--font-body);
    color: #0f172a;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

p {
    font-family: var(--font-body);
    margin: 12px 0px;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;

}

a:hover {
    text-decoration: none;
}

::selection {
    background: #0b1a4a;
    color: #fff;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 82px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #fff;

    box-shadow: 0 2px 2px rgba(0, 0, 0, .06);
}

.navbar .navbar-brand {
    padding: 0px !important;
}

.navbar-brand .brand-title {
    font-weight: 700;
    color: #0b1a4a;
    font-size: 2.5rem;


    line-height: 0.9;
    display: flex;
    justify-content: center;

}

.logo_horizontal {
    display: flex;


}

.logo_horizontal div {

    margin: 0px 8px;
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar-brand .brand-subtitle {
    font-size: 0.85rem;
    /* color: #6c757d; */
    color: #0b1a4a;
    display: block;
    font-weight: 500;
    border-top: 2px solid #0b1a4a;
    text-transform: uppercase;
    margin: 4px 0px;

}

.header_tab .nav-link {
    font-weight: 500;

    padding: 0.5rem 1rem !important;
}

#mainNavbar ul li a:hover {
    color: #0d6efd !important
}

/* =======================================================
   1. BASE MEGA MENU CONFIGURATION (Safe Everywhere)
   ======================================================= */
.mega-menu {
    border: none;
    transition: opacity 0.3s ease, top 0.3s ease, visibility 0.3s ease;
}

/* =======================================================
   2. DESKTOP SPECIFIC RULES (Screens 992px and above)
   ======================================================= */
@media (max-width: 768px){
   .navbar .mega-menu, 
    .nav-item .mega-menu {
        min-width: none ;
    }
}
@media (min-width: 768px) {
   .navbar .mega-menu, 
    .nav-item .mega-menu {
        position: absolute;
        left: 0;
        right: 0;
        /* Ensures full horizontal stretch */
        top: calc(100% + 50px);
        max-width: 100%;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        padding: 1.8rem !important;
        border-radius: 4px;
        min-width: 400px ;
    }

    /* Smooth Desktop Hover Effect Transition */
    .navbar .dropdown:hover>.mega-menu {
        opacity: 1;
        top: calc(100% + 30px);
        visibility: visible;
    }

    /* JavaScript Toggle Anchor Support Rule for Desktop Engine clicks */
    .mega-menu.show-mega {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}


.product-item {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.55rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    white-space: unset !important;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.product-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.product-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.4;
}

.arrow-icon {
    align-self: center;
    margin-left: auto;
    color: #ccc;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.product-item:hover .arrow-icon {
    transform: translateX(3px);
    color: #0d6efd;
}

.feature-box {
    background-color: #f4f7ff;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-demo {
    background-color: #0b1a4a;
    color: white;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

.btn-demo:hover {
    background-color: #152968;
    color: white;
}

.brand-logo {
    width: 60px;
    height: 60px;
}

.header_tab .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #010101 !important;
}

.border-end {
    border-right: 1px solid #f6f8ff91;
}




#hero-se h1 {
    font-size: 55px;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 25px;
    font-weight: 700;
}

@media only screen and (max-width: 480px) {
    #hero-se h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
}

@media only screen and (max-width: 767px) {
    #hero-se h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1440px) {
    #hero-se h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
}


@media (max-width: 768px) {
    .navbar-toggler {
        position: relative;
        padding: 0px;
        border: none !important;
        outline: 0 !important;
        margin: 10px 6px;

    }

    .mobile-navbar .navbar-toggler .navbar-toggler-icon {
        width: 1.4rem;
        height: 1.4rem;
    }

    /* 1. RESET BUTTON BACKGROUND (Kill the grey box permanently) */
    .mobile-navbar .navbar-toggler,
    .mobile-navbar .navbar-toggler:hover,
    .mobile-navbar .navbar-toggler:focus,
    .mobile-navbar .navbar-toggler:active {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* 2. BASE ICON SETUP */
    .navbar-toggler .fa-bars,
    .navbar-toggler .fa-times {
        position: absolute;
        inset: 0;
        margin: auto;
        width: max-content;
        height: max-content;
        font-size: 1.25rem;

        /* Your starting icon color (Change this to whatever your site uses) */
        color: #333333 !important;

        transition: opacity 0.25s ease, transform 0.3s ease, color 0.2s ease;
    }

    /* =======================================================
   3. CLOSED STATE (Default icon behavior)
   ======================================================= */
    .navbar-toggler.collapsed .fa-times {
        opacity: 0 !important;
        transform: rotate(-90deg) scale(0.5) !important;
    }

    .navbar-toggler.collapsed .fa-bars {
        opacity: 1 !important;
        transform: rotate(0deg) scale(1) !important;
    }

    /* =======================================================
   4. OPENED STATE (Active menu view)
   ======================================================= */
    .navbar-toggler:not(.collapsed) .fa-bars {
        opacity: 0 !important;
        transform: rotate(90deg) scale(0.5) !important;
    }

    .navbar-toggler:not(.collapsed) .fa-times {
        opacity: 1 !important;
        transform: rotate(0deg) scale(1) !important;
    }


    .brand-logo {
        width: 50px !important;
        height: 50px !important;
    }

    .navbar-brand .brand-title {
        font-size: 2.0rem !important;
    }

    .navbar-brand .brand-subtitle {
        font-size: 0.75rem !important;
    }

    .navbar-to

    /* Setup a smooth transition environment for both icons */
    /* Base setup for both icons inside the wrapper */
    .navbar-toggler .fa-bars,
    .navbar-toggler .fa-times {
        position: absolute;
        inset: 0;
        margin: auto;
        width: max-content;
        height: max-content;
        font-size: 1.25rem;
        transition: opacity 0.25s ease, transform 0.3s ease;
    }


    .navbar-toggler.collapsed .fa-times {
        opacity: 0 !important;
        transform: rotate(-90deg) scale(0.5) !important;
    }

    .navbar-toggler.collapsed .fa-bars {
        opacity: 1 !important;
        transform: rotate(0deg) scale(1) !important;
    }


    .navbar-toggler:not(.collapsed) .fa-bars {
        opacity: 0 !important;
        transform: rotate(90deg) scale(0.5) !important;
    }

    .navbar-toggler:not(.collapsed) .fa-times {
        opacity: 1 !important;
        transform: rotate(0deg) scale(1) !important;
    }

    .navbar-collapse {
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0.01), 0 1px 5px 0 rgba(0, 0, 0, 0.13);
        margin: 18px 10px;
        padding: 10px 12px;
        position: absolute;
        left: 5px;
        width: 350px;
        top: 70px;
   
        transition: all .3s ease;
    }

    .get_Started .ctn_btn {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .navbar-nav {
        text-align: left !important;
        align-items: flex-start !important;
        padding-left: 10px;
        /* Provides a small, clean space on the left side */
        margin: 0 auto;
    }

    /* Add comfortable vertical spacing between the items */
    .navbar-nav .nav-item {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f8f9fa;
        /* Optional: adds a very soft separator line */
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
        /* Removes separator line from the last item */
    }

    /* Make sure links align correctly left */
    .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0 !important;
    }

    .mega-menu .icon-box {
        display: none;
    }

}

.dropdown-toggle::after {
    display: none !important;
}

p {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
}

.sub_heading {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.color-primary {
    color: #0b1a4a
}

.cus-btn {
    background: #0b1a4a;
    color: #fff;
    display: inline-flex;
    padding: 14px 20px;
    overflow: hidden;
    position: relative;
    line-height: 120%;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid #0b1a4a;
    border-radius: 0.365rem;
    background: #0b1a4a;
    user-select: none;
    -webkit-user-select: none;
    font-weight: 400;
    transition-duration: 0.4s;
    text-decoration: none;
}

.cus-btn:hover {
    background: #11235e;
    color: #fff;

}

.cus-btn-2 {
    background: transparent;
    color: #000;
    display: inline-flex;
    padding: 14px 20px;
    overflow: hidden;
    position: relative;
    line-height: 120%;
    font-weight: 600;
    touch-action: manipulation;
    cursor: pointer;
    border: 2px solid var(--bs-link-outline);
    border-radius: 0.365rem;
    user-select: none;
    -webkit-user-select: none;
    transition-duration: 0.4s;
    text-decoration: none;
}

/* .cus-btn-2:hover{
  background: #11235e;
  color: #fff;
  
} */
/* ---------------------------------------------------------------
Hero-section
---------------------------------------------------------------- */
.hero-section {
    background-image: linear-gradient(rgba(0, 25, 115, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 25, 115, .03) 1px, transparent 1px);
    padding: 65px 0;
    background-size: 50px 50px;
    min-height: calc(100vh - 95px);
    overflow: hidden;
}

.solutions {
    /* border-right: 1px solid #eaeaea; */
    padding: 9px 13px;
    position: relative;
    font-family: 14px;
    color: #0b1a4a;
    font-weight: 600;
    text-align: center;
}

.segment-icon {
    border-radius: 50%;
    padding: 12px;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.icon_img {
    width: 60px;
    height: 60px;
    border: none;
    background: rgb(237, 237, 238);
    border-radius: 50%;
    text-align: center;
    padding: 18px;
}

.icon_img .fa {
    color: #00c4ffd4 !important;
}

.centralize {
    padding: 25px 20px;
    background: #fff;
    box-shadow: 0 16px 24px 2px rgba(185, 183, 183, 0.14), 0 6px 30px 5px rgba(158, 158, 158, 0.12), 0 8px 10px -7px rgba(154, 151, 151, 0.2);
    margin-bottom: 30px;
    border-radius: 10px;
    transition: 0.5s;
}

.centralize:hover {
    /* background: linear-gradient(341deg, #fff8dc 0%, #f4d35e 50%, #d4a017 100%); */
    background: linear-gradient(341deg, #fff8dc 0%, #6dc2f3 50%, #34c3e7 100%);
    color: #ffffff !important;
}


.mission-wrapper {
    background-image: linear-gradient(90deg, rgba(11, 26, 74, 0.92), rgba(31, 82, 140, 0.85)), url(assets/img/wind.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 0;
    color: #ffffff;
    height: 355px;
}

.heading-separator {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    margin: 15px auto;
    border: none;
    opacity: 1;
}

.wrapper {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    margin-top: 0px;
    position: relative;
    border-radius: 4px;
    background-color: #fff;
}
.mission-card{
    padding: 15px;
}

@media (min-width: 768px) {
    .mission  .wrapper {
       margin-top: -40px ;

    }
    .mission-card{
    padding: 25px;
}
}
@media (min-width: 550px) {
    .mission  .wrapper {
       margin-top: -40px ;

    }
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    grid-column: 1 / span 12;
    grid-row: 3;
    justify-content: center;
}

.client_w {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    justify-content: center;
    display: flex;
    height: 100px;
    width: 200px;
}

.logo-grid img {
    max-height: 76px;
    width: 100%;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .logo-grid img {
        max-height: 76px;
        max-width: 136px;
        object-fit: contain;
    }
}

.stats-counter-strip {
    background: #0b1a4a;
    box-shadow: 0 1rem 3rem rgba(20, 27, 92, 0.15);
}

.counter-icon-glow {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #93a2f5;
    transition: all 0.3s ease;
}

/* #----------------------------------Footer----------------------- */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fa-facebook-f {
    background: #078af1;
    color: white;
    font-size: 25px;
    padding: 6px 6px 0px 6px;
    border-radius: 50%;
}

.fa-instagram {
    color: #dd4b39;
    font-size: 25px;
    padding: 8px;
}

.fa-youtube {
    color: #f90f0f;
    font-size: 25px;
    padding: 8px;
}

.fa-linkedin-in {
    /* background: #125688; */
    color: #125688;
    font-size: 25px;
    padding: 8px;
}

.fa-x-twitter {
    /* background: #1d9bf0; */
    color: #000;
    font-size: 25px;
    padding: 8px;
}

/* #---------------------------------------------Footer-end-------- */
section.billing-showcase-zone {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); */
    background: linear-gradient(135deg, #431e87 0%, #8143f1 100%);
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* ==========================================================================
           GLOBAL SECTION CONFIGURATION (Matches image_c75c22.jpg layout blueprint)
           ========================================================================== */
section.billing-showcase-zone {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); */
    background: linear-gradient(135deg, #431e87 0%, #8143f1 100%);
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.demo_cards_wrappers {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 90px 0px;

}


/* ==========================================================================
           RESPONSIVE MANUAL TAB CARDS (LEFT COLUMN SIDEBAR)
           ========================================================================== */
.custom-tab-card {
    position: relative;
    border-radius: 9999px;
    /* Fully rounded pill on mobile devices */
    padding: 8px 20px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.custom-tab-card .tab-trigger-btn {
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    font-family: Josefin-sans;
    background: transparent;
    cursor: pointer;
    padding: 0;
    outline: none;
    color: #2563eb;
    /* text-blue-600 baseline */
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

/* Click overlay mapping engine handles execution bubbles perfectly */
.custom-tab-card .click-overlay {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    z-index: 2;
}

/* Hide descriptive text on mobile viewports */
.custom-tab-card .tab-description {
    display: none;

}



@media (max-width: 992px) {
    .demo_cards_wrappers {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 5px 0px;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }
}

/* DESKTOP VIEWPORT MEDIA ENHANCEMENTS */
@media (min-width: 992px) {
    .custom-tab-card {
        /* Left sharp-cut curved alignment edge matching image references */
        border-radius: 12px 0 0 12px;
        padding: 24px;
        background-color: transparent;
        /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);  */
    }

    .custom-tab-card:hover {
        background-color: rgba(255, 255, 255, 0.14);
    }

    .custom-tab-card .tab-trigger-btn {
        color: #ffffff;
        /* Default state text color value */
    }

    /* Desktop Active Highlight Matrix States */
    .custom-tab-card.active {
        background-color: rgba(255, 255, 255, 0.14);
        /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); */
        /* transform: translateX(2px); */
        color: white;
    }

    .custom-tab-card.active .tab-trigger-btn {
        color: white;
    }

    .custom-tab-card.hover .tab-description {
        color: white
    }

    .custom-tab-card .click-overlay {
        border-radius: 12px 0 0 12px;
    }

    .custom-tab-card .tab-description {
        display: block;
        margin-top: 10px;
        font-family: Josefin-sans;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.5;
        z-index: 1;
        position: relative;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;


    }

    .custom-tab-card.active .tab-description {
        color: white;
        /* Slate grey visibility enhancement contrast profile */
    }
}


.dashboard-preview-viewport {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.video-browser-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vid_header {
    background-color: #f1f3f5;
    border-bottom: 1px solid #dee2e6;
}

.browser-dots {
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Native JS structural pane transitioning definitions */
.custom-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.custom-pane.active {
    display: block;
}

.custom-pane.show {
    opacity: 1;
}

.dashboard-preview-viewport {
    /* 1. Mobile Default Styles (w-180 equivalent max boundaries) */
    width: 100%;
    max-width: 720px;
    margin-top: 40px;
    overflow: hidden;
    /* border-radius: 12px;       */
    /* background-color: #f8fafc;    */


    /* box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.2), 
                0 10px 10px -5px rgba(30, 58, 138, 0.2); */

    /* padding: 20px; */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Desktop Viewport Media Query Adjustments (992px and up) */
@media (min-width: 992px) {
    .dashboard-preview-viewport {
        margin-top: 0;
        height: 100%;
        max-width: 1000px;
        width: 1000px;
        min-width: 100%;
    }
}

.other_fea {
    padding: 12px;
    cursor: pointer;
}

@media (max-width: 450px) {
    .hero_bilin {
        padding-top: 60px;
    }

}

@media (max-width: 760px) {
    .feature-icon-wrapper {
        padding: 2rem 0.6rem !important;
    }
}


/* #----------------------------------------HRMS */
.hrsm-hero {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.pillar-card {
    background: #8080800f;
}

.bento-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border-color: #eef0f2 !important;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, .35);
}

.faq-section {
    padding: 100px 0;
}

.faq-badge {
    display: inline-block;
    background: #FFF8E6;
    color: #F4A100;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
}

.inve_faq .accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.inve_faq .accordion-button {
    padding: 22px 25px !important;
    font-weight: 600;
    font-size: 17px;
}

.inve_faq .accordion-button:not(.collapsed) {
    background: #fff !important;
    color: #111;
    box-shadow: none;
    padding: 10px 20px !important;
}

.inve_faq .accordion-button:focus {
    box-shadow: none;
}

.inve_faq .accordion-collapse {
    border: none !important;
}

.inve_faq .accordion-body {
    color: #666;
    line-height: 1.8;
    padding: 0px 20px !important;
}

.inve_faq .accordion-button {
    background: transparent !important;
}



.text-glow-teal {
    color: #128286;
    background: linear-gradient(135deg, #16b1b7 0%, #0a5c5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.task_work_alet {
    bottom: -15px;
    right: 0;
}

.task_work {
    bottom: -15px;
    left: 0;
}

.hrsm-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 500px;
    /* Rich illuminated teal flare for dark luxury theme surfaces */
    background: radial-gradient(circle, rgb(31 137 141 / 8%) 0%, rgb(8 74 76 / 3%) 50%, #d2ebd2 70%) !important;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hrms-badge-wrappers {

    background: rgb(203 247 248 / 0%);
    border: 2px solid rgb(5 99 102 / 83%);
    padding: 6px 14px;
    border-radius: 30px;
    margin: 25px 0px !important;
}

/* Badge layout framework metrics */

/* Float Widget Hover Micro-Interaction */
.task-work-widget {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.task-work-widget:hover {
    transform: translateY(-5px);
}

/* Custom keyframe for ultra-smooth floating transition */
@keyframes hrmsSmoothFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.99);
        filter: blur(4px);
        /* Soft text appearance blur */
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Master class mapping with optimized acceleration curve */
.animate-on-load {
    opacity: 0;
    will-change: transform, opacity;
    /* Hardware acceleration trigger for 60fps/120fps smoothness */
    animation: hrmsSmoothFloat 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

/* Staggered sequential delay intervals */
.delay-badge {
    animation-delay: 100ms;
}

.delay-title {
    animation-delay: 220ms;
}

.delay-desc {
    animation-delay: 340ms;
}

.delay-actions {
    animation-delay: 460ms;
}

/* Center Background Radial Glow Engine */
.hrsm-hero {
    position: relative;
    background-color: #f8f9fa;
    /* Ya jo bhi aapka layout background hai */
    overflow: hidden;
}

/* Creating an ambient blur layer behind the text grid */
.hrsm-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 450px;
    /* Soft teal focal glow bursting out from the dead center */
    background: radial-gradient(circle, rgba(10, 92, 95, 0.08) 0%, rgba(18, 130, 134, 0.03) 50%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    /* Layout mechanics safety override */
}

/* Ensuring the text content layers sit properly over the background glow */
.hrsm-hero .container {
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: #8080800f;
}

/* Bento Grid Modern Hover Effects */
.bento-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border-color: #eef0f2 !important;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 92, 95, 0.08) !important;
    border-color: rgba(10, 92, 95, 0.25) !important;
}

/* Glassmorphism & Avatar Circle Helpers */
.avatar-sm {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.bg-purple {
    background-color: #8b5cf6 !important;
}

.text-teal {
    color: #0a5c5f !important;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.fs-8 {
    font-size: 0.78rem;
}

.fs-7 {
    font-size: 0.88rem;
}

/* Accordion Container Spacing */
.custom-faq-accordion .accordion-item {
    border-color: #eef0f2 !important;
    transition: all 0.25s ease;
}

/* Open Accordion State Highlighting */
.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(10, 92, 95, 0.04) !important;
    color: #0a5c5f !important;
}

/* Helper Utility Classes */
.text-teal {
    color: #0a5c5f !important;
}

.fs-7 {
    font-size: 0.88rem;
}



.footer2 {
    background: #ebeaeb40 !important;
}

/* 
------------------------------------------------- */
.truste img {
    width: 100px;
    color: black;
}

.inventory_over-wrapper {
    background: #f96232;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 0;
    color: #ffffff;
    height: 340px;
}

.pricin_list {
    box-shadow: 0 16px 24px 2px rgba(185, 183, 183, 0.14), 0 6px 30px 5px rgba(158, 158, 158, 0.12), 0 8px 10px -7px rgba(154, 151, 151, 0.2);
    border-radius: 10px;
    transition: 0.5s;
    padding: 25px 20px;
}

.popular_pri {
    background: lab(7.78673% 1.82345 -15.0537);
}

.cta-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 30px;
    padding: 30px 60px;
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.accordion-header:has(.accordion-button:not(.collapsed)) {
    border-bottom: none !important;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-header {
    border-top: 1px solid #dee2e6 !important;
}

.inve_faq .accordion-collapse {
    border: none !important;
}