

/* Stats */
.stats {
    padding: 40px 0;
    background-image: url(../images/bg-8.png);
    background-position: bottom;
    background-attachment: fixed;
    overflow: hidden;
    background-blend-mode: overlay;
    background-color: #0000003b;
}

    .stats .stat {
        padding: 20px;
        position: relative
    }

        .stats .stat h3 {
            font-size: 32px;
            font-weight: 700;
            color: #fff
        }

        .stats .stat span {
            font-size: 10px;
            letter-spacing: 0.18em;
            opacity: 0.6
        }

    .stats .vdiv {
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px;
        height: 60%;
        background: linear-gradient(to bottom,transparent,rgba(255,255,255,0.15),transparent)
    }

/* Director */
.director {
    background: #fff
}

.dir-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8,22,46,0.12)
}

    .dir-box img {
        width: 100%;
        display: block
    }

.quote {
    font-size: 80px;
    line-height: 1;
    color: #00c2b2;
    opacity: 0.2;
    margin-bottom: -20px;
    font-family: Sora
}

.msg {
    position: relative;
    padding-left: 24px;
    border-left: 0
}

.msg-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    background: #00c2b2;
    height: 0
}

.msg p {
    color: #5a6a85;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 12px
}

.meta {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    align-items: center
}

.meta-line {
    width: 40px;
    height: 1px;
    background: #00c2b2
}

/* Values */
.values {
    /* background: #f4f9ff; */
    padding: 40px 0;
    background-image: url(../images/bg-5.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 14px;
    margin-top: 30px;
}

.v-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgb(8 22 46 / 22%);
    transition: 0.4s
}

    .v-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(8,22,46,0.12)
    }

.v-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00c2b2;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.6s
}

.v-card:hover .v-topline {
    transform: scaleX(1)
}

.v-icon {
    width: 48px;
    height: 48px;
    background: #f4f9ff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 16px
}

.v-card h4 {
    font-size: 15px;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 10px
}

.v-card p {
    font-size: 13px;
    color: #5a6a85;
    line-height: 1.6;
    margin: 0;
}

.values .v-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .values .v-icon svg {
        width: 34px;
        height: 34px;
        display: block;
        color: #13898a;
    }

.about {
    padding: 40px 0;
    background-image: url(../images/bg-1.jpg);
    border-top: 1px solid #eef2f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* CTA */
.cta {
    padding: 40px 0;
}

    .cta h2 {
        font-size: 36px;
        line-height: 1.1;
        max-width: 500px
    }

    .cta p {
        opacity: 0.6;
        margin-top: 12px
    }
