.feature-section {
    background: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.feature-heading .pbmit-title {
    max-width: 520px;
}

.feature-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-pill-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    color: #1c1c1c;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.feature-card-grid .feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 48px rgba(31, 39, 52, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-radius: 22px;
    min-height: 240px;
    padding: 26px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-grid .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 58px rgba(31, 39, 52, 0.14);
    border-color: rgba(251, 175, 29, 0.35);
}

.feature-card .pbmit-ihbox-headingicon {
    gap: 18px;
    align-items: flex-start;
}

.feature-card .pbmit-ihbox-icon-wrapper {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(251, 175, 29, 0.12);
    border: 1px solid rgba(251, 175, 29, 0.22);
    color: #fbaf1d;
}

.feature-card .pbmit-element-title {
    font-size: 20px;
    margin-bottom: 0.55rem;
}

.feature-card .feature-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(251, 175, 29, 0.14);
    color: #fbaf1d;
    font-weight: 700;
    font-size: 0.86rem;
    margin-bottom: 0.9rem;
}

.feature-card .pbmit-heading-desc {
    color: #4b4b4b;
    line-height: 1.7;
}

.feature-card-grid .col-sm-6 {
    display: flex;
}

.feature-card-grid .feature-card {
    flex: 1;
}

/* Who We Are Journey Section */
.who-we-are-section-v2 {
    background: #be4a0d;
    padding-top: 60px;
    padding-bottom: 60px;
}

.who-we-are-journey-wrapper {
    background: linear-gradient(135deg, rgba(251, 175, 29, 0.08) 0%, rgba(251, 175, 29, 0) 80%);
    border-radius: 28px;
    padding: 50px 45px;
    border: 1px solid rgba(251, 175, 29, 0.15);
}

.journey-heading .pbmit-title {
    max-width: 580px;
    line-height: 1.35;
}

.journey-heading .pbmit-subtitle {
    color: #fbaf1d;
}

.journey-desc {
    max-width: 580px;
    line-height: 1.75;
}
.who-we-are-point-cards {
    display: grid;
    gap: 18px;
}

/* point cards initial + animated state */
.who-we-are-point-cards {
    display: grid;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.who-we-are-point-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px 22px;
    transform: translateX(0);
    opacity: 1;
    transition: background 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    min-width: 0;
}

.who-we-are-point-card.in-view {
    animation: slideInRight 0.7s ease both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.who-we-are-point-card:hover {
    transform: translateY(-4px);
    background: rgba(251, 175, 29, 0.08);
    border-color: rgba(251, 175, 29, 0.2);
}

.who-we-are-point-card h4 {
    color: #ffffff;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.4;
}

.who-we-are-point-card p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.75;
}

.point-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fbaf1d;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 14px;
}

/* make the left heading sticky on larger screens */
@media (min-width: 992px) {
    .who-we-are-journey-wrapper {
        overflow: visible !important; /* ensure sticky can escape */
    }

    .who-we-are-journey-wrapper .row {
        align-items: flex-start;
    }

    .who-we-are-journey-wrapper .col-lg-6:first-child {
        position: sticky;
        top: 100px;
        align-self: flex-start;
        z-index: 20;
    }

    .pbmit-heading-subheading.journey-heading {
        position: static !important;
        top: auto !important;
        align-self: stretch !important;
        z-index: auto !important;
        background: transparent !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.journey-milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.milestone-item {
    position: relative;
    padding-left: 42px;
    animation: slideInUp 0.6s ease forwards;
}

.milestone-item:nth-child(2) {
    animation-delay: 0.1s;
}

.milestone-item:nth-child(3) {
    animation-delay: 0.2s;
}

.milestone-item:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestone-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fbaf1d;
    border: 3px solid #1a1a1a;
    box-shadow: 0 0 0 2px #fbaf1d;
}

.milestone-content h4 {
    color: #fbaf1d;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.milestone-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.65;
}

.journey-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(251, 175, 29, 0.2);
}

.journey-stat {
    text-align: center;
}

.journey-stat span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbaf1d;
    line-height: 1;
    margin-bottom: 10px;
}

.journey-stat p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
}

@media (max-width: 992px) {
    .who-we-are-journey-wrapper {
        padding: 38px 32px;
    }
    
    .journey-milestones {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 640px) {
    .who-we-are-journey-wrapper {
        padding: 28px 20px;
    }
    
    .journey-heading .pbmit-title {
        font-size: 1.8rem;
    }
    
    .journey-milestones {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .journey-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .feature-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .feature-pill-list {
        justify-content: flex-start;
    }
}

/* Ensure who-we-are two-column layout stays side-by-side on desktop */
@media (min-width: 992px) {
    .who-we-are-journey-wrapper > .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .who-we-are-journey-wrapper .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* tighten spacing for the point cards on smaller screens */
@media (max-width: 991px) {
    .who-we-are-point-cards {
        gap: 12px;
    }
}
