.about-main-bg {
    background-image: url('../../../assets/images/about-main-bg.webp');
    background-position: top center;
    background-repeat: no-repeat;
} 
.storytelling-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 120px;
}

.content-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Yellow Background Shape */
.yellow-shape {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 1500px;
    background: #ffd400;
    border-radius: 40px;
    z-index: 1;

    box-shadow:
        0 0 40px rgba(255, 212, 0, 0.4),
        0 0 80px rgba(255, 212, 0, 0.3),
        0 0 120px rgba(255, 212, 0, 0.2);
}

.storytelling-section h2 {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.storytelling-section h3 {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 30px;
    font-weight: 700;
    color: #1C1B1B;
    line-height: 1.3;
}
.storytelling-section p {
    font-weight: 400;
    max-width: 730px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--light-black-color);
    line-height: 1.7;
}

/* Image Card */
.image-card {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    overflow: visible;
}

/* Purple Blob Behind Card */
.image-card::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 100%;
    background: #D6BAFF;
    left: 56%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 40% 50% 50% 22%;
    z-index: -1;
}
/* Actual Card */
.image-card img {
    width: 100%;
    display: block;
    border-radius: 30px;
    border: 6px solid #ffffff;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15),
        0 25px 50px rgba(0,0,0,0.1);
}

/* ==========================
   Bridging The Gap Section
========================== */

.bridging-gap-section {
       background-image: url('../../../assets/images/bridging-bg.webp');
    padding: 100px 0;
    border-radius: 0 80px 80px 0;
    overflow: hidden;
        background-repeat: no-repeat;
}
 
 .bridging-img-wrp {
    margin-left: 5em;
    box-shadow: -12px 10px 20px #4b139d17;
    background: #0000;
    width: fit-content;
    border-radius: 25px;
}
.section-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 0.95;
    color: var(--primary-color);
    margin-bottom: 35px;
}

.section-title span {
    display: block;
    color: #ffc800;
}

.title-line {
    width: 95px;
    height: 8px;
    background: #4b139d;
    border-radius: 30px;
    margin-bottom: 35px;
}

/* Highlight Card */
.highlight-box {
    position: relative;
    background: #f9f7f7;
    border-radius: 24px;
    padding: 35px 32px;
    margin-bottom: 45px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.highlight-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #ffc800;
    border-radius: 24px 0 0 24px;
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.6;
    color:#1C1B1B;
    margin: 0;
}

.bottom-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Right Side Image */
.image-col {
    flex: 0 0 52%;
}

.image-wrapper {
    position: relative;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    width: 85%;
    height: 90px;
    background: rgba(172, 137, 255, 0.25);
    filter: blur(25px);
    border-radius: 100px;
    z-index: 0;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 30px;
    border: 6px solid #ffffff;
    position: relative;
    z-index: 2;
}
/* ==========================
   Community Focus Section
========================== */

.community-focus-section {
    padding: 100px 0;
}

.community-heading {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
}

.community-divider {
    display: block;
    width: 140px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50px;
    margin: 0 auto 60px;
}

/* ==========================
   Grid Layout
========================== */

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Last Card Takes Remaining Space */
.community-grid .focus-card:last-child {
    grid-column: span 2;
}

/* ==========================
   Card Styling
========================== */

.focus-card {
    position: relative;
    min-height: 160px;
    background: #FCF9F8;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition:0.5s;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05);
}
.focus-card.purple-accent:hover {
    background: var(--secondary-color);
}
.yellow-accent:hover {
    background: var(--primary-color);
}
.yellow-accent:hover h3 {
    color: #fff !important;
}
.focus-card h3 {
    margin: 0;
    text-align: center;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* Left Accent Borders */

.yellow-accent::before,
.purple-accent::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
}

.yellow-accent::before {
    background: var(--secondary-color);
}

.purple-accent::before {
    background: #5423A4;
}
 
/* ====================================
   Sustainable Financial Model Section
==================================== */

.funding-model-section {
    padding: 100px 0;
    background: #FCF9F8;
}

.funding-card {
    position: relative;
    padding: 100px 70px;
    text-align: center;
    border-radius: 60px;
    overflow: hidden;
    z-index: 1;
    background-image: url('../../../assets/images/financial-model-bg.webp');
        background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
 
.funding-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.funding-title span {
    display: block;
}

.funding-description {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
}
 
 /* ==================================
   CTA Cards Section
================================== */

.action-panel-section {
    padding: 40px 0 100px;
}
.action-card {
    position: relative;
    background: #5b2ca5;
    border-radius: 45px;
    padding: 60px;
    height: 100%;
    overflow: hidden;
 
}

 

.action-card-primary {
    border: none;
}

.action-card-outline {
    border: 4px solid var(--secondary-color);
}

.action-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.1;
}

.action-text {
    color: #D6BAFF;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 520px;
    font-weight: 300;
}

/* Buttons */

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease;
    padding: 15px 0;
}

.action-btn-filled {
    background: var(--secondary-color);
    color: #6b5200;
}

.action-btn-filled:hover {
    background: #ffd633;
    color: #6b5200;
}

.action-btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.action-btn-outline:hover {
    background: var(--secondary-color);
    color: #5b2ca5;
}
.action-card-outline {
    background-image: url('../../../assets/images/cta-box-bg.webp');
    background-repeat: no-repeat;
    background-position: bottom left;
}
.action-card-primary{
    background-image: url('../../../assets/images/cta-box-1-bg.webp');
    background-repeat: no-repeat;
    background-position: top right;
}
 
/* Responsive */
@media (max-width: 991px) {
    .storytelling-section h2 {
        font-size: 48px;
    }

    .storytelling-section h3 {
        font-size: 26px;
    }

    .yellow-shape {
        width: 300px;
        height: 1200px;
    }
     .section-title {
        font-size: 56px;
    }

    .highlight-box p,
    .bottom-content p {
        font-size: 18px;
    }
     .community-focus-section {
        padding: 80px 0;
    }

    .community-heading {
        font-size: 48px;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .community-grid .focus-card:last-child {
        grid-column: span 2;
    }

    .focus-card {
        min-height: 140px;
    }

    .focus-card h3 {
        font-size: 24px;
    }
     .funding-card {
        padding: 80px 40px;
        border-radius: 40px;
    }

    .funding-title {
        font-size: 52px;
    }

    .funding-description {
        font-size: 18px;
    }
    
    
    .action-panel-section {
        padding: 80px 0;
    }

    .action-card {
        padding: 40px;
    }

    
    .action-text {
        font-size: 18px;
        margin-bottom: 35px;
    }

    
}

@media (max-width: 767px) {
    .storytelling-section {
        padding: 60px 20px 80px;
    }

    .storytelling-section h2 {
        font-size: 38px;
    }

    .storytelling-section h3 {
        font-size: 22px;
    }

    .storytelling-section p {
        font-size: 16px;
    }

 
    .bridging-gap-section {
        padding: 70px 0;
        border-radius: 0 40px 40px 0;
    }

    .section-title {
        font-size: 42px;
    }

    .highlight-box {
        padding: 25px;
    }

    .highlight-box p,
    .bottom-content p {
        font-size: 16px;
        line-height: 1.8;
    }
     .community-focus-section {
        padding: 60px 0;
    }

    .community-heading {
        font-size: 34px;
    }

    .community-divider {
        width: 90px;
        height: 6px;
        margin-bottom: 40px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-grid .focus-card:last-child {
        grid-column: span 1;
    }

    .focus-card {
        min-height: 120px;
        padding: 25px;
        border-radius: 20px;
    }

    .focus-card h3 {
        font-size: 20px;
    }
    
       .funding-model-section {
        padding: 0;
    }

    .funding-card {
        padding: 60px 25px;
        border-radius: 30px;
    }

    .funding-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .funding-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
        .action-panel-section {
        padding:  0 0 80px;
    }

    .action-card {
        padding: 30px;
        border-radius: 30px;
    }

    .action-heading {
        font-size: 32px;
    }

    .action-text {
        font-size: 16px;
        line-height: 1.7;
    }
 
}