
/* ==================== SHARED COMPONENTS ==================== */

.btn_visit_website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white) !important;
    border: 2px solid var(--ma-type-primary);
    border-radius: 32px;
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_visit_website:hover {
    background-color: var(--ma-type-primaryhoverdark);
    border-color: var(--ma-type-primaryhoverdark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(38, 68, 140, 0.2);
}

/* ==================== SECTION 1: HERO ==================== */

.myrfid_hero_section {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #EFF6FF 100%);
    padding: 130px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.myrfid_hero_section h1 {
    margin: 20px 0 25px;
}

.myrfid_hero_section p {
    margin-bottom: 35px;
    max-width: 550px;
}

.myrfid_hero_image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.myrfid_hero_image_wrapper img {
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* ==================== SECTION 2: ABOUT / WHAT WE BUILD ==================== */

.what_we_build_section {
    background-color: var(--ma-white);
    padding: 90px 0;
}

.about_myrfid_image {
    padding: 10px;
}

.about_myrfid_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about_myrfid_content {
    padding-left: 50px;
}

    .about_myrfid_content h2 {
        margin-bottom: 25px;
    }

.about_myrfid_content p {
    margin-bottom: 20px;
}

.about_myrfid_stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--ma-grey30);
}

.stat_item {
    padding-left: 0;
    border-left: none;
}

.stat_number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--ma-type-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat_text {
    font-size: 13px;
    font-weight: 700;
    color: var(--ma-grey130);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ==================== SECTION 3: SOLUTIONS / CAPABILITIES ==================== */

.rfid_solutions_section {
    background-color: #f8faff;
    padding: 90px 0;
}

.capabilities_header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.capabilities_header h2 {
    margin-bottom: 20px;
}

.capability_card {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 20px;
    padding: 30px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.capability_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.capability_icon {
    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);
}

.capability_icon i {
    font-size: 24px;
    color: #fff;
}

.capability_card h4 {
    margin-bottom: 12px;
}

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

/* ==================== SECTION 4: DARK WHY MYRFID ==================== */

.why_myrfid_section {
    background-color: #0F172A;
    padding: 90px 0;
}

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

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

.btn_download_brochure {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--ma-body-text);
}

.btn_download_brochure:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.feature_item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature_item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.feature_icon i {
    font-size: 22px;
    color: #fff;
}

.feature_text h5 {
    color: var(--ma-white);
    margin-bottom: 10px;
}

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

/* ==================== SECTION 5: INDUSTRIES ==================== */

.where_we_work_section {
    background-color: var(--ma-white);
    padding: 90px 0;
}

.versatile_header h2 {
    margin-bottom: 20px;
}

.industry_card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

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

    .industry_card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.industry_icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #034694 0%, #4F7EB4 100%);
    color: var(--ma-white);
}

.industry_icon i {
    font-size: 28px;
}

/* ==================== SECTION 6: CTA ==================== */

.ind-cta {
    background: var(--ma-type-primary);
    padding: 85px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .ind-cta .section_label {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.ind-cta h2 {
    color: #fff;
    margin-bottom:20px;
}

    .ind-cta p {
        color: #fff;
        opacity: 0.85;
        margin: 0 auto 40px;
    }


.ind_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ma-white);
    color: var(--ma-type-primary) !important;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    font-size: var(--ma-body-text);
}

    .ind_cta_btn:hover,
    .ind_cta_btn:focus,
    .ind_cta_btn:active {
        background-color: transparent;
        color: #fff !important;
    }

.ind_cta_btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ma-white) !important;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    font-size: var(--ma-body-text);
}

    .ind_cta_btn_outline:hover,
    .ind_cta_btn_outline:focus,
    .ind_cta_btn_outline:active {
        background: var(--ma-white);
        color: var(--ma-type-primary) !important;
    }

/* Responsive */
@media (max-width: 991px) {
    .about_myrfid_content {
        padding-left: 0;
        margin-top: 40px;
    }

    .myrfid_hero_image_wrapper {
        margin-top: 40px;
    }

    .cta-box {
        padding: 40px;
    }

    .stat_item {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .myrfid_hero_section {
        padding: 80px 0 60px;
    }

    .about_myrfid_stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}