.default-section-title-container {
    max-width: 550px;
}

.services-card,
.branch-card {
    transition: .3s;
}

.services-card:hover {
    box-shadow: 0px 7px 29px 0px #00000040;
}

.section-title::before {
    background-color: var(--primary-color);
}

.branch-card:hover {
    background-color: var(--white-color) !important;
    box-shadow: 0px 7px 29px 0px #00000040;

}

.team-section {
    background-image: url("../assets/images/hero-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.team-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgb(2 32 103 / 70%);
}

/* ===== Shared Section Helpers ===== */
.ab-section-tag {
    display: inline-block;
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

.ab-section-sub {
    color: #777;
    font-size: 0.95rem;
    max-width: 520px;
    line-height: 1.8;
}

/* ===== Vision & Mission Section ===== */
.ab-vision-section {
    background: #fff;
}

.ab-vision-card {
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ab-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ab-vision-card--navy {
    background: var(--secondary-color);
}

.ab-vision-card--light {
    background: #fff;
    border: 1.5px solid #eef0f4;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.ab-vision-card--soft {
    background: #f6f8fc;
    border: 1.5px solid #eef0f4;
}

/* VM Icon */
.ab-vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.ab-vm-icon--red {
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
}

.ab-vm-icon--green {
    background: rgba(25, 135, 84, 0.09);
    color: #198754;
}

.ab-vm-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
}

.ab-vm-text--dark {
    color: #666;
}

.ab-vm-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.ab-vm-divider--light {
    background: #eef0f4;
}

.ab-vm-quote {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ab-quote-icon {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ab-vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ab-vm-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #555;
    font-weight: 600;
}

/* Goal bars */
.ab-goal-label {
    font-size: 0.82rem;
    color: #555;
    font-weight: 600;
}

.ab-goal-pct {
    font-size: 0.82rem;
}

.ab-goal-bar {
    height: 6px;
    background: #e5e8ef;
    border-radius: 50px;
    overflow: hidden;
}

.ab-goal-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    transition: width 1s ease;
}

/* ===== Values Section ===== */
.ab-values-section {
    background: #f6f8fc;
}

.ab-value-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #eef0f4;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ab-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
}

.ab-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.ab-value-icon--navy {
    background: rgba(4, 28, 62, 0.08);
    color: var(--secondary-color);
}

.ab-value-icon--red {
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
}

.ab-value-icon--green {
    background: rgba(25, 135, 84, 0.09);
    color: #198754;
}

.ab-value-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.75;
}

/* ===== History Timeline Section ===== */
.ab-history-section {
    background: #fff;
}

.ab-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ab-timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.ab-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-left: 52%;
    padding-bottom: 2.5rem;
    position: relative;
}

.ab-timeline-item--alt {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 52%;
}

.ab-timeline-dot {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 1.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary-color);
    z-index: 1;
}

.ab-timeline-dot--active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(219, 22, 53, 0.2);
}

.ab-timeline-card {
    background: #fff;
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.ab-timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.ab-timeline-card--active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.ab-timeline-year {
    display: inline-block;
    background: rgba(219, 22, 53, 0.09);
    color: var(--primary-color);
    padding: 0.2rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ab-timeline-year--active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.ab-timeline-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

.ab-timeline-text--white {
    color: rgba(255, 255, 255, 0.78);
}

/* Responsive: stack timeline on small screens */
@media (max-width: 767.98px) {
    .ab-timeline::before {
        right: 8px;
        transform: none;
    }

    .ab-timeline-item,
    .ab-timeline-item--alt {
        justify-content: flex-start;
        padding-left: 2.5rem;
        padding-right: 0;
    }

    .ab-timeline-dot,
    .ab-timeline-dot--active {
        right: auto;
        left: 1px;
        transform: none;
    }

    .ab-timeline-card {
        max-width: 100%;
    }
}