#about {
    display: block !important;
    height: auto !important;
    padding: 10vh 0 !important;
    background-color: #fff;
    width: 100%;
}

#about .mid_container {
    max-width: 80%;
    margin: 0 auto;
}

.about_intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about_intro .content {
    flex: 2;
}

.about_intro .content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    font-size: 16px;
}

.about_intro .image_col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about_intro .image_col img {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about_intro .image_col img:hover {
    transform: scale(1.05);
}

.mv_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.mv_card {
    background: linear-gradient(135deg, #0B214B 0%, #1a3a6e 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 33, 75, 0.2);
    transition: transform 0.3s ease;
}

.mv_card:hover {
    transform: translateY(-5px);
}

.mv_card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
}

.mv_card p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.values_section {
    text-align: center;
    margin-bottom: 80px;
}

.sub_title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #0B214B;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.sub_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1D7341;
    margin: 15px auto 0;
    border-radius: 2px;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value_item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value_item:hover {
    background: #fcfcfc;
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.value_item i {
    font-size: 42px;
    color: #1D7341;
    margin-bottom: 25px;
}

.value_item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0B214B;
    font-weight: 600;
}

.value_item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.bottom_text_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.bt_col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0B214B;
    font-weight: 700;
}

.bt_col p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

#leadership {
    padding: 10vh 0 15vh 0;
    background-color: #fff;
}

.leader_subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chairman_row {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.chairman_row::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 2px;
    height: 50px;
    background: #f0f0f0;
    z-index: 0;
}

.chairman_card {
    transform: scale(1.05);
    border-color: #1D7341 !important;
    box-shadow: 0 20px 50px rgba(11, 33, 75, 0.15) !important;
    z-index: 2;
}

.leader_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.leader_card {
    background: #fff;
    width: 300px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.leader_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 33, 75, 0.1);
    border-color: #1D7341;
}

.img_wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px auto;
    position: relative;
}

.img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f4f6f8;
    transition: border-color 0.3s ease;
}

.leader_card:hover .img_wrapper img {
    border-color: #1D7341;
}

.leader_card h3 {
    color: #0B214B;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader_card .designation {
    display: block;
    color: #1D7341;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.leader_card .committee_role {
    display: block;
    color: #8898aa;
    font-size: 13px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {

    .leader_grid,
    .chairman_row {
        flex-direction: column;
        align-items: center;
    }

    .chairman_row {
        margin-bottom: 40px;
    }

    .chairman_row::after {
        display: none;
    }

    .leader_card {
        width: 100%;
        max-width: 350px;
        transform: scale(1) !important;
    }
}

#our_story {
    padding: 12vh 0;
    background-color: #fff;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #1D7341;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    opacity: 0.3;
}

.tl_container {
    padding: 10px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.tl_container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid #1D7341;
    top: 25px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(29, 115, 65, 0.2);
    transition: all 0.3s ease;
}

.tl_container:hover::after {
    background-color: #1D7341;
    transform: scale(1.2);
}

.timeline .left {
    left: 0;
}

.timeline .right {
    left: 50%;
}

.timeline .right::after {
    left: -10px;
}

.tl_container::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    border: medium solid white;
}

.timeline .left::before {
    right: 40px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.05));
}

.timeline .right::before {
    left: 40px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
}

.content {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border-top: 3px solid transparent;
}

.tl_container:hover .content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-top-color: #1D7341;
}

.year_point {
    display: inline-block;
    background: #e8f5e9;
    color: #1D7341;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.content h3 {
    margin-bottom: 10px;
    color: #0B214B;
    font-size: 20px;
    font-weight: 700;
}

.content p {
    color: #666;
    line-height: 1.6;
}

@media screen and (max-width: 900px) {

    .about_intro,
    .mv_grid,
    .values_grid,
    .bottom_text_grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .about_intro {
        text-align: center;
    }

    .about_intro .image_col {
        order: -1;
        margin-bottom: 30px;
    }

    .about_intro .content p {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 30px;
    }

    .tl_container {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline .right {
        left: 0%;
    }

    .tl_container::after,
    .timeline .right::after {
        left: 20px;
        right: auto;
    }

    .timeline .left::before,
    .timeline .right::before {
        left: 70px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
        filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
    }
}