/* ═══════════════════════════════════════
   OUR STORY SECTION
═══════════════════════════════════════ */

.story-section {
    background: #F2F4FF;
}

/* Badge */
.story-badge {
    font-family: "f1";
    font-size: 14px;
    color: #1E2B8C;
    letter-spacing: 0.12em;
}

/* Title */
.story-title {
    font-family: "f5";
    font-size: clamp(40px, 5vw, 64px);
    color: #1E2B8C;
    line-height: 1.1;
}

/* Description */
.story-desc {
    font-family: "f1";
    font-size: 17px;
    color: #555;
    max-width: 500px;
    line-height: 1.7;
}

/* Tags */
.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.story-tags span {
    font-family: "f1";
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f1f3f9;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* ✨ DROP SHADOW */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    /* smooth animation */
    transition: all 0.25s ease;
}

/* Yellow dot */
.story-tags span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
}

/* 🚀 HOVER LIFT EFFECT */
.story-tags span:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Right cards */
.story-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-card {
    background: #e9edf7;
    padding: 20px;
    border-radius: 14px;
}

.story-card h4 {
    font-family: "f5";
    font-size: 24px;
    margin-bottom: 5px;
}

.story-card .highlight {
    color: #f59e0b;
}

.story-card p {
    font-family: "f3";
    font-size: 15px;
    margin: 0;
}

.story-card small {
    font-size: 13px;
    color: #666;
}

/* Bottom badges */
.story-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.story-badge-box {
    display: flex;
    gap: 12px;
    background: #ffffff;
    padding: 14px;
    border-radius: 12px;
    align-items: center;
}

.story-badge-box .icon {
    width: 45px;
    height: 45px;
    background: #dbeafe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-badge-box strong {
    font-family: "f3";
    font-size: 15px;
}

.story-badge-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}


/* ══════════════════════════
           JOURNEY SECTION
        ══════════════════════════ */
.journey-section {
    padding: 80px 0 100px;
}

/* Badge */
.journey-badge {
    display: inline-block;
    font-family: "f3", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1E2B8C;
    /* background: rgba(30, 43, 140, 0.08);
    border: 1px solid rgba(30, 43, 140, 0.2); */
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 28px;
}

/* Headline */
.journey-title {
    font-family: "f5", serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #1E2B8C;
    line-height: 1.1;
    margin-bottom: 16px;
}

/* Sub-headline */
.journey-subtitle {
    font-family: "f1", sans-serif;
    font-size: 17px;
    color: #555;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 56px;
}

/* ══════════════════════════
           MILESTONE CARD
        ══════════════════════════ */
.milestone-card {
    border-radius: 20px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.milestone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 43, 140, 0.10);
}

/* Card colour variants */
.card-white {
    background: #ffffff;
}

.card-green {
    background: #E8F5E9;
}

.card-yellow {
    background: #FFFDE7;
}

.card-peach {
    background: #FFF3E0;
}

/* Card heading */
.milestone-card h4 {
    font-family: "f4", serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 14px;
}

/* Card body text */
.milestone-card p {
    font-family: "f1", sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 28px;
}

/* Card label at bottom */
.milestone-label {
    font-family: "f3", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1E2B8C;
}

/* ══════════════════════════
           RESPONSIVE
        ══════════════════════════ */
@media (max-width: 767px) {
    .journey-section {
        padding: 60px 0 80px;
    }

    .milestone-card {
        padding: 28px 24px 24px;
    }
}


/* ══════════════════════════
           PRINCIPLES SECTION
        ══════════════════════════ */
.principles-section {
    padding: 80px 0 100px;
}

/* Badge */
.principles-badge {
    display: inline-block;
    font-family: "f1", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1E2B8C;
    background: rgba(30, 43, 140, 0.08);
    border: 1px solid rgba(30, 43, 140, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 28px;
}

/* Headline */
.principles-title {
    font-family: "f5", serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: #1E2B8C;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 560px;
}

/* Sub-headline */
.principles-subtitle {
    font-family: "f1", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 56px;
}

/* ══════════════════════════
           PRINCIPLE CARD
        ══════════════════════════ */
.principle-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 43, 140, 0.10);
}

/* Icon wrapper */
.principle-icon {
    width: 54px;
    height: 54px;
    background: #EEF0FF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 28px;
    flex-shrink: 0;
}

/* Card heading */
.principle-card h4 {
    font-family: "f4", serif;
    font-size: 19px;
    font-weight: 700;
    color: #1E2B8C;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Card body text */
.principle-card p {
    font-family: "f1", sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ══════════════════════════
           RESPONSIVE
        ══════════════════════════ */
@media (max-width: 767px) {
    .principles-section {
        padding: 60px 0 80px;
    }

    .principle-card {
        padding: 26px 22px 28px;
    }
}