/* ==================== BREADCRUMB SECTION WITH BACKGROUND IMAGE ==================== */
.breadcrumb-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-image: linear-gradient(rgba(11, 31, 20, 0.85), rgba(27, 94, 32, 0.85)), url('../images/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.breadcrumb-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #ffffff;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #a3e4d7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-list li i {
    font-size: 11px;
    color: #81c784;
}

.breadcrumb-list li span {
    color: #e2e8e0;
}

/* Responsive Media Queries for Breadcrumb */
@media screen and (max-width: 992px) {
    .breadcrumb-section {
        padding: 55px 0;
    }
    .breadcrumb-content h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb-section {
        padding: 45px 0;
    }
    .breadcrumb-content h1 {
        font-size: 26px;
    }
    .breadcrumb-list {
        font-size: 13px;
        gap: 8px;
    }
}

/* ==================== WHO WE ARE STORY STYLING ==================== */
.who-we-are-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eaf2e8;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.who-text-col h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a3022;
    line-height: 1.25;
    margin-bottom: 20px;
}

.story-lead {
    font-size: 17px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-desc {
    font-size: 15px;
    color: #556058;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Values Section Styling */
.story-values-section {
    padding: 70px 0 90px 0;
    background-color: #f7f9f6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 22px;
    border: 1px solid #e2ebd9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46,125,50,0.1);
    border-color: #2e7d32;
}

.value-icon {
    width: 65px;
    height: 65px;
    background: #eaf2e8;
    color: #2e7d32;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #2e7d32;
    color: #ffffff;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3022;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    color: #556058;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}