/* Container and Wrapper */
.about_section_r {
    background-color: #f8fafc;
    /* Subtle light background */
    padding: 60px 0;
}

.review_box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Ensures the header stays within radius */
    border: 1px solid #edf2f7;
}

/* Header Design */
.all_section_heading {
    background: #2d6cdf;
    /* Your brand blue */
    padding: 20px 30px;
    text-align: center;
}

.all_section_heading h5 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Area */
.about_section_content {
    padding: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

/* Styling dynamic HTML content (P, Strong, UI) from CMS */
.about_section_content p {
    margin-bottom: 20px;
}

.about_section_content strong {
    color: #1e293b;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about_section_r {
        padding: 40px 0;
    }

    .about_section_content {
        padding: 25px;
        font-size: 0.95rem;
    }

    .all_section_heading h5 {
        font-size: 1.2rem;
    }
}

/*  */

/* Section Styling */
.about_awsome_section_r {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    padding: 65px 0;
}

/* The Highlight Card */
.highlight-box {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eef2f6;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(45, 108, 223, 0.05);
}

/* Hover Effect */
.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(45, 108, 223, 0.12);
    border-color: #2d6cdf;
}

/* SVG Icon Styling */
.highlight-box svg {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    fill: #2d6cdf;
    /* Your Brand Blue */
    transition: transform 0.3s ease;
}

.highlight-box:hover svg {
    transform: scale(1.1);
}

/* Typography */
.highlight-box h5 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.highlight-box p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .highlight-box {
        padding: 30px 15px;
    }

    .highlight-box h5 {
        font-size: 1.1rem;
    }

    .about_awsome_section_r{
        padding: 30px 0;
    }

    .highlight-box-div{
        margin-top: 10px;
    }

    .about_info_main_r {
    padding: 39px 0;
}
}

/* Container Styling */
.about_info_main_r {
    background-color: #f8faff;
    /* Light background to make the bar pop */
    padding: 27px 0;
}

.about_info_r {
    background: linear-gradient(90deg, #8e94a5 0%, #2a3867 100%);
    /* Matches image_f50fbf */
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Individual Item Styling */
.info-item-r {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.info-item-r strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-item-r p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Vertical Divider */
.about_info_r_divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .about_info_r {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about_info_r_divider {
        width: 60%;
        height: 1px;
        margin: 25px 0;
    }

    .info-item-r {
        width: 100%;
    }
}
