
.about-story{
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(180deg,#fffdf8 0%,#fff8ef 100%);
    overflow: hidden;
}


.about-story .container{
    position: relative;
    z-index: 2;
}

.section-heading{
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading .subtitle{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    background: rgba(240,0,5,.08);
    color: #F00005;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2{
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.section-heading p{
    color: #666;
    font-size: 15px;
}

/*==================================================
                GRID
==================================================*/

.story-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
}



.story-image{
    position: relative;
}
/* 
.image-box img{
    width: 100%;
   
}
 */

.story-content h3{
    font-size: 30px;
    color: #222;
    line-height: 1.25;
    margin-bottom: 25px;
}

.story-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 14px;
}


.story-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin: 35px 0;
}

.story-list .item{
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 14px;
    background: #fff;
    font-weight: 600;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.story-list .item:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg,#F00005,#FFC23D);
    color: #fff;
}


.story-stats{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 90px;
}

.stat{
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

.stat:hover{
    transform: translateY(-8px);
}

.stat h2{
    color: #F00005;
    font-size: 42px;
    margin-bottom: 10px;
}

.stat span{
    color: #666;
    font-weight: 500;
}

.petals-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    pointer-events: none;
    z-index: 1;
}

@media(max-width:992px){

.story-wrapper{
    grid-template-columns:1fr;
    gap:60px;
}

.story-content{
    text-align:center;
}

.story-list{
    grid-template-columns:1fr;
}

.story-stats{
    grid-template-columns:repeat(2,1fr);
}

.floating-card{
    right:20px;
}

.section-heading h2{
    font-size:38px;
}

.story-content h3{
    font-size:34px;
}

}

@media(max-width:768px){

.about-story{
    padding:80px 0 100px;
}

.story-stats{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:32px;
}

.story-content h3{
    font-size:30px;
}

.mandala-left,
.mandala-right{
    width:220px;
}

}