.main-hero-section {
    background-color: rgb(255, 255, 255);
    position: relative;
}

/* Left */
.main-hero-section .hero-content .hero-title {
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.main-hero-section .hero-content .hero-subtitle {
    color: #000;
    max-width: 470px;
    position: relative;
    z-index: 10;
}


/* Background Gradient Layers */
.main-hero-section .bg-layer {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 0;
    z-index: 0;
    bottom: 0px;
}

.main-hero-section .bg-layer img {
    width: 100%;
    opacity: 0.3;
}

/* Right */
.hero-product-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-product-card-wrapper .hero-product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px 10px 10px;
    max-width: 400px;
    position: relative;
    background: transparent;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.hero-product-card-wrapper .hero-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
    z-index: -1;
}

.hero-product-card-wrapper .hero-product-card:hover::before {
    transform: scaleX(1);
}

.hero-product-card-wrapper .hero-product-card .hero-product-card-icon {
    position: relative;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    width: 60px;
    height: 60px;
}

.hero-product-card-wrapper .hero-product-card h6 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--black);
}

.hero-product-card-wrapper .hero-product-card p {
    font-size: 16px;
    margin: 0;
    line-height: 20px;
    color: var(--black);
}

.hero-product-card-wrapper .hero-product-card .arrow {
    margin-left: auto;
    font-size: 18px;
}

.hero-product-card-wrapper .hero-product-card.health-plus {
    background-color: #D6EFFF;
}

.hero-product-card-wrapper .hero-product-card.talent-plus {
    background-color: #c8f3e8;
}

.hero-product-card-wrapper .hero-product-card.inventory-plus {
    background-color: #F9E5D7;
}

.hero-product-card-wrapper .hero-product-card.fieldra {
    background-color: #E7DEFE;
}



.all-in-one-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(92.93deg, #DEF3FA 0%, #CEF0F2 32.35%, #FDE1D3 65.31%, #E4DFFC 99.04%);

}

/* Badge */
.all-in-one-section .solution-badge {
    background: #fff;
    padding: 2px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    color: #000;
}

/* Image */
.all-in-one-section .solution-image {
    width: 136px;
    height: 131px;
    object-fit: cover;
    border-radius: 20px;
}

/* Text */
.all-in-one-section .solution-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
}

.all-in-one-section .solution-subtitle {
    font-size: 16px;
    color: var(--black);
}

.all-in-one-section .solution-description {
    font-size: 16px;
    max-width: 640px;
    color: var(--black);
}


.brands-section {
    background: #fff;
}

.brands-section .brands-title {
    line-height: 28px;
    color: var(--black);
}

/* Logos */
.brands-section .brand-logo {
    display: block;
    object-fit: contain;
}

/* Size variants */
.brands-section .brand-sm {
    width: 150px;
    height: 80px;
}

.brands-section .brand-md {
    width: 160px;
    height: auto;
}

.brands-section .brand-wide {
    width: 160px;
    height: 32px;
}

.brands-section .brand-square {
    width: 90px;
    height: 90px;
}

/* Customers link */
.brands-section .customers-link {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-section {
    background-color: #f1f8fd;
}

.solution-section .section-title {
    color: var(--black);
    text-align: center;
}

.solution-section .section-para {
    text-align: center;
    max-width: 792px;
    margin: 0 auto;
}

.solution-section .solution-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    height: 100%;
}

/* Pill Header */
.solution-section .solution-card .solution-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.solution-section .solution-card .solution-icon {
    font-size: 22px;
    line-height: 1;
}

.solution-section .solution-card .solution-title {
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--black);
}

/* Text */
.solution-section .solution-card .solution-text {
    line-height: 1.4;
    margin-bottom: 28px;
    color: var(--black);
}

/* Link */
.solution-section .solution-card .solution-link {
    font-weight: 500;
    color: var(--black);
    text-decoration: underline;
}

.solution-section .solution-card .solution-link:hover {
    text-decoration: none;
}

.home-modules-section {
    background-color: #f1f8fd;
}

.home-modules-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
}

.home-modules-section .section-para {
    max-width: 792px;
    margin: 0 auto;
}

/* Content Panel */
.home-modules-panel {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    padding-top: 50px;
    margin: auto;
    margin-top: 60px;
    position: relative;
}

.home-modules-panel .panel-title {
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 15px;
    color: var(--product-main-color-2);
}

.home-modules-panel .panel-text {
    line-height: 20px;
    margin-bottom: 15px;
}


/* Feature Cards */
.home-modules-panel .feature-cards {
    max-width: 1200px;
    flex-wrap: wrap;
    position: absolute;
    width: 90%;
    top: -40px;
    margin: auto;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 999px) {

    /* Content Panel */
    .home-modules-panel {
        padding: 20px;
        padding-top: 20px;
        margin-top: 30px;
        position: relative;
    }

    .home-modules-panel .feature-cards {
        position: relative;
        top: 0px;
        margin-bottom: 20px;
    }
}

.home-modules-panel .feature-cards .module-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    height: 100%;
    text-align: center;
    box-shadow: 0 0 0 transparent;
    transition: all 0.35s ease-in-out;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.home-modules-panel .feature-cards .module-card:hover,
.nav-tabs .nav-link.active .module-card {
    border: 1px solid var(--product-main-color-2);
    box-shadow: 0px 0px 29px 8px color-mix(in srgb, var(--product-main-color-1), transparent 90%);
    background-color: #e6e6e6;
}

.home-modules-panel .feature-cards .icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.home-modules-panel .feature-cards .icon-img img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.home-modules-panel .feature-cards .module-card p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.home-modules-panel .nav-tabs {
    border-bottom: none;
}

.home-modules-panel .nav-tabs .nav-item.show .nav-link,
.home-modules-panel .nav-tabs .nav-link.active,
.home-modules-panel .nav-tabs .nav-link.active {
    color: transparent;
    background-color: transparent !important;
    border-color: transparent !important;
    border-bottom: none;
}

.home-modules-panel .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent !important;
}

.home-modules-panel .nav-tabs .nav-item .nav-link {
    height: 100%;
}

.home-modules-panel .module-content .tab-pane {
    position: relative;
}

.home-modules-panel .module-content .tab-pane .bg-img {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -80px;
    left: 300px;
    z-index: 1;
    opacity: 0.08;
}

.home-modules-panel .module-content .tab-pane .bg-img img {
    width: 100%;
    border-radius: 50px;
}

@media only screen and (max-width: 1399px) {
    .home-modules-panel {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 999px) {
    .home-modules-panel {
        padding-top: 20px;
    }

    .home-modules-panel .feature-cards {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {

    .home-modules-panel .nav-tabs .nav-item {
        width: 100%;
    }

    .home-modules-panel .feature-cards .nav-item .nav-link .module-card {
        justify-content: center;
    }

}


.security-section {
    background-color: #ffffff;
}

.security-icon {
    display: flex;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: auto;

}

.security-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #000;
    margin-bottom: 10px;
}

.security-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #000;
}


.solution-section .solution-card .solution-pill2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border: 1px solid #000;
    border-radius: 40px;
    margin-bottom: 25px;
}