.about-hero {
    min-height: 500px;
    margin-top: 1rem;
    padding-top: 100px;
    padding-bottom: 3rem;
    background-image: linear-gradient(147deg, rgba(41,46,80,0.85) 13%, rgba(46,51,84,0.8) 40%, rgba(62,66,97,0.6) 63%, rgba(237,221,83,0) 100%), url('/assets/images/about-us-main.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-content {
    padding-inline: clamp(1rem, 5vw, 6rem);
    max-width: 700px;
}

.about-hero-text h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.story-mission {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fe6b01;
    font-weight: 600;
}

.story-heading {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0a0f35;
    margin: 0.5rem 0 1rem;
}

.story-description {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
}

.story-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: 30% 80%;
    background-repeat: no-repeat;
    min-height: fit-content;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Cards - Compact Styling */
.mission-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-card {
    flex: 1;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(254,107,1,0.2);
}

.mission-icon i,
.mission-icon .fas,
.mission-icon .far {
    font-size: 1.75rem;
    color: #fe6b01;
    background: rgba(254,107,1,0.08);
    padding: 0.75rem;
    border-radius: 14px;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon i {
    background: #fe6b01;
    color: white;
    transform: scale(1.02);
}

.mission-card h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0f35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.mission-card p {
    font-family: 'Inter', sans-serif;
    color: #5a6e8a;
    line-height: 1.45;
    font-size: 0.875rem;
}

/* Core Values Section - Compact Grid */
.core-values-section {
    background: #f8fafc;
    padding: 4rem 2rem;
}

.leading-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.subheading {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #0a0f35;
    margin-bottom: 1rem;
}

.subheading-helper-text {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
}

/* Compact Values Grid Layout */
.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(254,107,1,0.2);
}

.value-icon {
    flex-shrink: 0;
    font-size: 1.75rem;
    color: #fe6b01;
    background: rgba(254,107,1,0.08);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #fe6b01;
    color: white;
    transform: scale(1.02);
}

.value-content {
    flex: 1;
}

.value-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0f35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.value-description {
    font-family: 'Inter', sans-serif;
    color: #5a6e8a;
    line-height: 1.45;
    font-size: 0.875rem;
}

/* Stats Section - Honest Metrics */
.stats-section {
    background: #0a0f35;
    color: white;
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 180px;
    padding: 1rem;
}

.stat-number {
    font-family: "Josefin Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #fe6b01;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* CTA Section */
.about-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fef3e8 0%, #fff 100%);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 48px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 2rem;
    color: #0a0f35;
}

.cta-card p {
    font-family: 'Inter', sans-serif;
    margin: 1rem 0 2rem;
    color: #334155;
}

.about-cta-btn {
    display: inline-block;
    background: #fe6b01;
    padding: 1rem 2rem;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #0a0f35;
    transform: scale(1.02);
}

/* Scroll Progress Bar */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: #fe6b01;
    transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-block {
        flex-direction: column;
    }
    
    .stats-container {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .about-hero-content {
        padding-inline: 1.5rem;
    }
    
    .mission-values-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-card {
        padding: 1.25rem;
    }
    
    .mission-icon i,
    .mission-icon .fas,
    .mission-icon .far {
        font-size: 1.5rem;
        padding: 0.65rem;
        border-radius: 12px;
    }
    
    .mission-card h3 {
        font-size: 1.1rem;
    }
    
    .mission-card p {
        font-size: 0.85rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .value-card {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
    
    .value-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .value-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cta-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%;
    }
    
    .mission-card {
        padding: 1rem;
    }
    
    .value-card {
        flex-direction: row;
        align-items: flex-start;
    }
}
.about-text-fix {
    text-align: start;
}

.about-leading-text {
    margin-inline: 0rem;
    max-width: 100%;
}