/* ACCESS CONTROL SOLUTION PAGE STYLES */

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

.hero_content {
    margin:20px 0px;   
}

.hero_content h1 {
    margin-bottom: 25px;
    color: #111827;
}

.hero_content p {
    margin-bottom: 35px;
    color: #6B7280;
}

.get_in_touch {
    display: inline-flex;
    align-items: center;
    padding: 12px 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;
    border: none;
    width: fit-content;
}

.get_in_touch i {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

    .get_in_touch:hover {
        background-color: var(--ma-type-primaryhoverdark);
        color: var(--ma-white);
        transform: translateY(-2px);
    }

.get_in_touch:hover i {
    transform: translateX(5px);
}

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

/* Section 2: Our Solutions */
.our_solutions_section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.our_solutions_section h2 {
    color: #111827;
    margin-bottom: 20px;
}

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

/* Section 3: Feature Section (using similar styles to authorization_models_section) */
.access_features_section {
    background-color: var(--ma-bg-light);
    padding: 80px 0px;
}

.access_features_section h2 {
    color: #111827;
    margin-bottom: 20px;
}

.feature_card {
    background-color: var(--ma-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    align-items: center;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}

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

.feature_card .card_icon i {
    color: var(--ma-white);
    font-size: 30px;
}

.feature_card h6 {
    margin-bottom: 0;
}

/* Section 4: Benefits */
.benefits_section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.benefits_section h2 {
    color: #111827;
    margin-bottom: 20px;
}

.benefits_card {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.benefits_card:hover {
    border-color: var(--ma-type-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefits_card h6 {
    margin-bottom: 15px;
}

.benefits_card p {
    margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .access_control_hero_section {
        padding: 80px 0px;
    }

    .hero_content h1 {
        font-size: 32px;
    }

    .our_solutions_section .section_image {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .access_control_hero_section {
        padding: 90px 60px 60px 60px;
    }

    .hero_content h1 {
        font-size: 28px;
    }

    .our_solutions_section,
    .access_features_section,
    .benefits_section {
        padding: 60px;
    }
}

@media screen and (max-width: 576px) {
    .access_control_hero_section {
        padding: 90px 40px 40px 40px;
    }

    .hero_content h1 {
        font-size: 24px;
    }

    .our_solutions_section,
    .access_features_section,
    .benefits_section {
        padding: 40px;
    }
}
