
/* ===== Hero / Banner ===== */
.hrms-hero__title-wrapper {
    min-height: 116px;
}
.hrms-hero__title {
    display: none;
    text-align: left
} /* shown via JS later */
.hrms-hero__lead {
    margin-bottom: 1rem;
    text-align: left;
    color: #e5e7eb;
}
.hrms-hero__btn-container {
    margin-bottom: 1rem;
    text-align: left;
}
.hrms-hero__stats {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #9ca3af;
}
.hrms-hero__image img {
    max-width: 100%;
    height: auto;
}

/* ===== Clients strip ===== */
.clients {
    padding: 2rem 0;
}

.logos-strip {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    overflow-x: auto;
}
.logos-strip img {
    height: 2rem;
    width: auto;
    filter: grayscale(100%);
}
.logos-strip img:hover {
    filter: grayscale(0%);
}
.logos-strip::-webkit-scrollbar {
    display: none;
}

/* ===== Features grid ===== */
.features {
    padding: 4rem 0;
}
.feature-card {
    background: #fff;
    border: 1px solid rgba(46, 110, 164, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}
.feature-card img {
    height: 64px;
    width: 64px;
}
.feature-card h3 {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 600;
}
.feature-card p {
    font-size: 0.875rem !important;
    line-height: 1.25rem;
    color: #4b5563;
    margin-bottom: 0;
}

/* ===== Mobile app section ===== */
.mobile-app {
    padding: 2rem 0;
}
.mobile-app__title a {
    text-decoration: none;
}
.mobile-app__carousel .item {
    width: 300px;
    height: 400px;
    position: relative;
}
.mobile-app__copy p {
    margin-bottom: 1rem;
}
.mobile-app__copy hr{
margin-left: 0;
margin-right: 0;
}
.mobile-app__features-list{
list-style: none;
padding-left: 0;
margin-bottom: 1rem;
}
.mobile-app__features-list li{
font-size: 1rem;
line-height: 1.75rem;
color: #4b5563;
margin-bottom: 0.5rem;
display: flex;
gap: 0.75rem;
}
.mobile-app__features-list li span{
font-size: 1rem;
line-height: 1.75rem;
}
.mobile-app__features-icon{
font-size: 1.25rem;
line-height: 1.75rem;
}

/* ===== Awards ===== */
.awards {
    padding: 2rem 0;
}
.awards__grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.awards__item {
    text-align: center;
    height: 100px;
    width: 150px;
    margin: 0 1rem;
    padding: 1rem 0;
}
.awards__item img {
    max-height: 100%;
    width: auto;
}

/* ===== Slick controls (keep your look) ===== */
.slick-arrow {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: -25px;
    border: none;
    border-radius: 20px;
    background: #f5f5f5;
    color: #2e6da4;
    font-family: monospace;
    font-size: 1.5rem;
    z-index: 300;
    outline: none;
    padding: 2px;
}
.slick-prev {
    left: 40px;
    text-align: left;
}
.slick-next {
    right: 40px;
    text-align: right;
}

/* Center-scale effect for the mobile slider (optional: kept from your inline) */
.mobile-app__carousel .item.slick-slide {
    transform: scale(0.7) translate(640px);
    transition: transform 0.4s;
}
.mobile-app__carousel .item.slick-slide.slick-active {
    transform: scale(0.8) translate(250px);
}
.mobile-app__carousel .item.slick-slide.slick-center {
    transform: scale(1);
    z-index: 30;
}
.mobile-app__carousel .item.slick-slide.slick-center + .slick-slide {
    transform: scale(0.8) translate(-250px);
    z-index: 10;
}
.mobile-app__carousel .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
    transform: scale(0.7) translate(-640px);
    z-index: 5;
}

/* ===== Small helpers ===== */
.btn-xl {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
} /* keep your larger CTA size */
.mt-32 {
    margin-top: 2rem;
} /* replaces style="margin-top:32px" */
