/* Main Container */
.ark_main_container {
    padding: 50px 0;
    overflow: hidden;
}

/* Image Section */
.ark_image_container {
    position: relative;
    min-height: 500px;
}

.ark_main_image,
.ark_secondary_image {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.ark_main_image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ark_secondary_image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    animation: bounce 2s infinite ease-in-out;
    width: 60%;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Stats Box inside Image */
.ark_stats_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f7f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 300px;
    z-index: 3;
}

.ark_progress_container {
    margin-bottom: 15px;
}

.ark_progress_label {
    display: flex;
    justify-content: space-between;
    font-size: 13.9px;
    font-weight: 500;
    margin-bottom: 5px;
}

.ark_progress_wrapper {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 8px;
}

.ark_progress_inner {
    background-color: #008080;
    height: 100%;
    border-radius: 5px;
}

/* Text Content Section */
.ark_text_content {
    padding-left: 30px;
}

/* Typography */
.h1_ark {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    padding-top: 20px;
    border: transparent;
    line-height: 2.12rem;
}

.h2_ark {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    padding: 0 22px;
    border: transparent;
    line-height: 2.12rem;
}

.ark_para {
    font-size: 13.9px;
    line-height: 23.48px;
    text-align: justify;
    margin-bottom: 12px;
    color: #4B5675;
    padding: 0 22px;
    word-spacing: normal;
    font-weight: 400;
}

.ark_li {
    font-size: 13.9px;
    line-height: 23.48px;
    text-align: justify;
    margin-bottom: 4px;
    color: #4B5675;
    padding-inline-start: 20px;
    word-spacing: normal;
    font-weight: 400;
}

/* Feature List */
.ark_features_list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ark_feature_item {
    margin-bottom: 15px;
    font-weight: 400;
    color: #4B5675;
    font-size: 13.9px;
    line-height: 23.48px;
    text-align: justify;
    padding: 0 22px;
}

.ark_feature_icon {
    color: #E85625;
    margin-right: 10px;
}

/* Experience Section */
.ark_experience_section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 22px;
}

.ark_experience_item {
    padding-right: 30px;

}

.ark_experience_item {
    padding-left: 30px;
    border-left: 1px solid #ccc;
}


.h3_ark {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.ark_experience_para {
    margin: 0;
    color: #4B5675;
    font-size: 13.9px;
}

/* Learn More Button */
.ark_btn_learn_more {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 0 22px;
}

/* service setion css */

/* service css end */


/* blog css */

.ark_blog_section {
    padding: 4rem 0;
}

.ark_blog_section_header {
    text-align: center;
    margin-bottom: 3rem;
}

.ark_blog_section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.ark_blog_section_subtitle {
    font-size: 1.1rem;
    color: #4B5675;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Card Base Styles --- */
.ark_blog_card {
    background-color: #F8F6F1;
    border: 1px solid #EAE8E2;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ark_blog_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- Large Featured Card (Left) --- */
.ark_blog_large_card {
    display: flex;
    flex-direction: column;
}

.ark_blog_large_card .ark_blog_card_image {
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px;
}


.ark_blog_large_card .ark_blog_card_body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ark_blog_large_card .ark_blog_card_title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

/* --- Small Cards (Right) --- */
.ark_blog_small_card .ark_blog_card_body {
    padding: 1rem;
}

.ark_blog_small_card .ark_blog_small_image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.ark_blog_small_card .ark_blog_card_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4rem;
    margin-bottom: 0.75rem;
}

.ark_blog_card_footer {
    margin-top: auto;
    padding-top: 1rem;
}

.ark_blog_tag {
    background-color: #fff;
    border: 1px solid #EAE8E2;
    color: #4B5675;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ark_blog_date {
    font-size: 0.8rem;
    color: #4B5675;
}