/* ===========================================
      SUHANA ABOUT PAGE CSS
      UNIQUE PREFIX : scAboutUltra
===========================================*/

/* HERO */

.scAboutUltraHero{
    width:100%;
    padding:90px 8%;
    background:linear-gradient(135deg,#f6fff8,#e8f8ee);
}

.scAboutUltraContainer{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.scAboutUltraLeft{
    width:100%;
    max-width:900px;
}

.scAboutUltraBadge{
    display:inline-block;
    padding:10px 22px;
    background:#dff5e6;
    color:#0b8a5a;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.scAboutUltraHeading{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    color:#222;
}

.scAboutUltraHeading span{
    color:#0b8a5a;
}

.scAboutUltraText{
    max-width:850px;
    margin:0 auto 35px;
    font-size:19px;
    line-height:1.9;
    color:#555;
}

.scAboutUltraButton{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:#0b8a5a;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.scAboutUltraButton:hover{
    background:#08794e;
    transform:translateY(-4px);
}

/* ====================================== */

.scAboutUltraStorySection{
    padding:90px 8%;
    background:#fff;
}

.scAboutUltraSectionTitle{
    text-align:center;
    margin-bottom:60px;
}

.scAboutUltraSectionTitle h2{
    font-size:42px;
    color:#0b8a5a;
    margin-bottom:15px;
}

.scAboutUltraSectionTitle p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.scAboutUltraStoryWrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.scAboutUltraStoryImage img{
    width:100%;
    border-radius:22px;
    display:block;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.scAboutUltraStoryContent h3{
    font-size:32px;
    color:#0b8a5a;
    margin-bottom:20px;
}

.scAboutUltraStoryContent p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* ====================================== */

.scAboutUltraMissionSection{
    padding:90px 8%;
    background:#f8fff9;
}

.scAboutUltraMissionGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.scAboutUltraMissionCard{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.scAboutUltraMissionCard:hover{
    transform:translateY(-8px);
}

.scAboutUltraMissionIcon{
    font-size:42px;
    margin-bottom:18px;
}

.scAboutUltraMissionCard h3{
    font-size:28px;
    color:#0b8a5a;
    margin-bottom:15px;
}

.scAboutUltraMissionCard p{
    color:#555;
    line-height:1.9;
}

/* ====================================== */

.scAboutUltraWhySection{
    padding:90px 8%;
    background:#fff;
}

.scAboutUltraWhyGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.scAboutUltraWhyCard{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.scAboutUltraWhyCard:hover{
    transform:translateY(-8px);
}

.scAboutUltraWhyIcon{
    font-size:45px;
    margin-bottom:18px;
}

.scAboutUltraWhyCard h3{
    font-size:22px;
    color:#0b8a5a;
    margin-bottom:15px;
}

.scAboutUltraWhyCard p{
    line-height:1.8;
    color:#666;
}

/* ====================================== */

.scAboutUltraValuesSection{
    padding:90px 8%;
    background:#f7fff8;
}

.scAboutUltraValuesGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.scAboutUltraValueBox{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    font-size:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.scAboutUltraValueBox h4{
    margin-top:18px;
    color:#0b8a5a;
    font-size:20px;
}

/* ====================================== */

.scAboutUltraCTASection{
    padding:90px 8%;
    background:#0b8a5a;
    text-align:center;
    color:#fff;
}

.scAboutUltraCTASection h2{
    font-size:42px;
    margin-bottom:20px;
}

.scAboutUltraCTASection p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
}

.scAboutUltraCTASection .scAboutUltraButton{
    background:#fff;
    color:#0b8a5a;
}

.scAboutUltraCTASection .scAboutUltraButton:hover{
    background:#f5f5f5;
}

/* ===========================================
            RESPONSIVE
===========================================*/

@media(max-width:991px){

.scAboutUltraStoryWrapper,
.scAboutUltraMissionGrid{
    grid-template-columns:1fr;
}

.scAboutUltraWhyGrid{
    grid-template-columns:repeat(2,1fr);
}

.scAboutUltraValuesGrid{
    grid-template-columns:repeat(2,1fr);
}

.scAboutUltraHeading{
    font-size:44px;
}

}

@media(max-width:767px){

.scAboutUltraHero,
.scAboutUltraStorySection,
.scAboutUltraMissionSection,
.scAboutUltraWhySection,
.scAboutUltraValuesSection,
.scAboutUltraCTASection{
    padding:70px 20px;
}

.scAboutUltraHeading{
    font-size:36px;
}

.scAboutUltraText{
    font-size:17px;
}

.scAboutUltraSectionTitle h2{
    font-size:32px;
}

.scAboutUltraStoryContent h3{
    font-size:28px;
}

.scAboutUltraWhyGrid,
.scAboutUltraValuesGrid{
    grid-template-columns:1fr;
}

.scAboutUltraCTASection h2{
    font-size:32px;
}

}

@media(max-width:480px){

.scAboutUltraHeading{
    font-size:30px;
}

.scAboutUltraText{
    font-size:16px;
    line-height:1.8;
}

.scAboutUltraButton{
    width:100%;
    text-align:center;
}

.scAboutUltraMissionCard,
.scAboutUltraWhyCard,
.scAboutUltraValueBox{
    padding:22px;
}

}