/* Biometrics Attendance System Style applied to Govt Biometric Suite */

/* Section 1: Hero Banner */
.automated_workforce_section {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #EFF6FF 100%);
    padding: 130px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.automated_workforce_section h1 {
    color: var(--ma-tag-black);
    margin-bottom: 16px;
    line-height: 1.15;
    font-size: 48px;
}

.hero_content>p {
    color: var(--ma-grey130);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

.hero_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    font-weight: 600;
}

.hero_cta_btn:hover {
    background-color: var(--ma-type-primaryhoverdark);
    color: var(--ma-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 68, 140, 0.3);
}

.hero_image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Section 2: Smart Integration */
.smart_integration_section {
    background-color: var(--ma-white);
    padding: 80px 0;
}



.smart_integration_card {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    height:100%;
}

.smart_integration_card:hover {
    box-shadow: var(--ma-depth64);
    transform: translateY(-3px);
}

.smart_integration_card_icon i {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #034694 0%, #4F7EB4 100%);
    color: var(--ma-white);
    font-size: 24px;
}

.smart_integration_card h6 {
    margin-bottom: 8px;
}

.smart_integration_card p {
    margin-bottom: 0px;
}

/* Section 3: HR Meets Finance (Solutions Suite) */
.hr_meets_finance_section {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.hr_meets_finance_section h2 {
    margin-bottom: 16px;
}

.hr_meets_finance_checklist {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 14px;
    padding: 28px;
}

.hr_meets_finance_checklist h6 {
    margin-bottom: 16px;
    font-weight: 700;
}

.hr_meets_finance_checklist ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hr_meets_finance_checklist ul li {
    font-size: var(--ma-body-text);
    color: var(--ma-grey130);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hr_meets_finance_checklist ul li i {
    color: var(--ma-type-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hr_meets_finance_img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hr_meets_finance_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Section 4: Supports */
.biometrics_supports_section {
    background-color: var(--ma-bg-section-dark);
    padding: 80px 0px;
}

.biometrics_supports_section h2 {
    color: var(--ma-white);
    margin-bottom: 40px;
}

.supports_item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.supports_item:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.supports_item i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    background-color: #e6edf417;
    color: white;
}

.supports_item p {
    color: var(--ma-white);
    opacity: 0.85;
    margin-bottom: 0px;
}

/* FAQ Section */
.frequently-asked-questions-section {
    background-color: var(--ma-white);
    padding: 80px 0;
}

.fq-aside {
    position: sticky;
    top: 120px;
}

.fq-aside h2 {
    margin-bottom: 20px;
}

.fq-aside p {
    margin-bottom: 30px;
    color: var(--ma-grey130);
}

.fq-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 12px;
    padding: 30px;
}

.fq-contact-ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--ma-type-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.fq-contact span {
    font-size: 11px;
    color: #6b7280;
    display: block;
    margin-bottom: 2px;
}

.fq-contact a {
    font-size: 15px;
    font-weight: 700;
    color: var(--ma-tag-black);
    text-decoration: none;
}

.fq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-item {
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .25s;
}

.fq-item.open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-color: transparent;
}

.fq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    background-color: var(--ma-white);
}

.fq-q-text {
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--ma-font-semibold);
    color: var(--ma-tag-black);
}

.fq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ma-type-primary);
    transition: transform .3s, background .3s;
}

.fq-item.open .fq-icon {
    transform: rotate(180deg);
    background: var(--ma-type-primary);
    color: #fff;
}

.fq-a {
    display: none;
    padding: 0 20px 18px;
    background-color: var(--ma-white);
}

.fq-item.open .fq-a {
    display: block;
}

.fq-a p {
    margin-bottom: 0;
    color: var(--ma-grey130);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .automated_workforce_section h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .fq-aside {
        position: static;
        margin-bottom: 40px;
    }
    
    .hero_image {
        margin-top: 40px;
    }

    .hr_meets_finance_img {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .automated_workforce_section {
        padding: 80px 0 60px 0;
    }
    
    .automated_workforce_section h1 {
        font-size: 32px;
    }
    
    .smart_integration_section,
    .hr_meets_finance_section,
    .biometrics_supports_section,
    .frequently-asked-questions-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero_cta_btn {
        width: 100%;
        justify-content: center;
    }
}