@charset "UTF-8";

*{
    box-sizing:border-box;
}

.about-wrapper{
    padding:16px 20px 20px;
    background:#f8f9fb;
}

/* Reduce white gap above breadcrumb */

.about-wrapper .container{
    padding-top:0 !important;
}

.breadcrumb-wrapper{
    margin:0 0 25px !important;
    padding-top:0 !important;
}

.about-block:first-child{
    margin-top:0 !important;
}

.about-icon{
    margin:0 auto 18px;
}

/* BLOCK */
.about-block{
    margin-bottom:60px;
}

/* ICON */
.about-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#00a79d,#4facfe);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.about-icon.small{
    width:55px;
    height:55px;
    font-size:20px;
}

/* HEADING */
.about-heading{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.about-heading::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin:12px auto;
    background:linear-gradient(90deg,#00a79d,#4facfe);
}

/* TEXT */
.about-text{
    font-size:16px;
    color:#555;
    max-width:850px;
    margin:0 auto 10px;
    line-height:1.8;
}

.about-text span{
    color:#00a79d;
    font-weight:600;
}

/* STATS */
.stats-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:40px 0;
}

.stat-card{
    background:#fff;
    padding:15px;
    text-align:center;
    border-radius:12px;
}

/* VISION */
.vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.vm-card{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:12px;
}

.vm-card span{
    color:#00a79d;
    font-weight:600;
}

/* TEAM */
.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.team-card{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:12px;
}

.team-card img{
    width:100px;
    height:100px;
    border-radius:50%;
}

/* WHY */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.why-card{
    background:#fff;
    padding:15px;
    border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .stats-section,
    .team-grid,
    .why-grid{
        grid-template-columns:1fr 1fr;
    }

    .vm-grid{
        grid-template-columns:1fr;
    }
}

.story-card-premium{
    display:flex;
    gap:30px;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:18px;
    padding:25px;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    flex-wrap:wrap; /* 🔥 prevents overlapping */
}

.story-card-premium:hover{
    transform:translateY(-5px);
}

.story-text{
    width:100%;
    max-width:1000px;       /* ideal readable width */
    margin:0 auto;
    text-align:center;
}

@media(max-width:768px){
    .story-card-premium{
        flex-direction:column;
        text-align:center;
    }
}

.story-text h3{
    margin-bottom:10px;
}

.review-card-premium{
    min-width:300px;

    background:#fff;
    border-radius:15px;
    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.review-card-premium:hover{
    transform:translateY(-5px);
}

.stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:10px;
}


.faq-item-premium{
    background:#fff;
    border-radius:12px;
    margin-bottom:10px;
    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.faq-question{
    width:100%;
    padding:15px 20px;
    background:none;
    border:none;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    transition:all .3s ease;
}

.faq-item-premium.active .faq-answer{
    max-height:300px;
    padding:10px 20px;
}

.section-title{
    text-align:center;
    width:100%;
	 padding:0;
    margin-bottom:20px;
}



.about-wrapper .about-block:last-child{
    margin-bottom:0; /* remove last block gap */
}

section{
    margin:0;
}

.faq-section-premium{
    padding:30px 0 60px;
}

.story-section-premium{
    padding:60px 0 30px;
}


.review-slider-premium{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:30px;
}

.review-card-premium{
    position:relative;
    background:linear-gradient(145deg,#ffffff,#f8fbff);
    border-radius:22px;
    padding:30px 25px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 1px 3px rgba(0,0,0,0.04);

    transition:all .35s ease;

    border:1px solid rgba(0,167,157,0.08);
}

.review-card-premium::before{
    content:"❝";
    position:absolute;
    top:10px;
    right:20px;

    font-size:70px;
    color:rgba(0,167,157,0.08);

    font-family:serif;
}

.review-card-premium:hover{
    transform:translateY(-8px);
    box-shadow:
    0 18px 45px rgba(0,0,0,0.10),
    0 5px 15px rgba(0,0,0,0.05);
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.review-card-premium p{
    font-size:15px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.review-card-premium h4{
    margin:0;
    font-size:17px;
    color:#00a79d;
    font-weight:700;
}

.review-card-premium h4::before{
    content:"— ";
    color:#00a79d;
}

@media(max-width:768px){

    .review-slider-premium{
        display:flex;
        gap:18px;

        overflow-x:auto;
        scroll-snap-type:x mandatory;

        padding-bottom:10px;

        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .review-slider-premium::-webkit-scrollbar{
        display:none;
    }

    .review-card-premium{
        min-width:85%;
        flex-shrink:0;

        scroll-snap-align:center;
    }

}