﻿section.style-section:before {
    content: "";
    background: url(../images/bg-star.png);
    background-position: right top;
    filter: contrast(0.5);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 1348px;
    transform: rotate(270deg);
    opacity: .8;
}

    .mv-row {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mv-card {
        flex: 1 1 500px;
        background: #fff;
        padding: 35px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border-top: 5px solid #b30000;
        transition: 0.4s;
    }

    .mv-card:hover {
        transform: translateY(-8px);
    }

    .mv-card h2 {
        color: #b30000;
        font-size: 26px;
        margin-bottom: 20px;
    }
    .mv-card ul {
        padding-left: 0;
        list-style: none;
    }

    .mv-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .mv-card ul li:before {
        content: "✓";
        color: #b30000;
        font-weight: bold;
        margin-right: 10px;
    }

.core-values {
   text-align: center;
   padding-bottom: 50px;
}

.title-section h2 span {
    color: #c70000;
}

.title-section p {
 margin: auto;
 color: #666;

 margin-bottom: 70px;
}
.value-card {
   background: #fff;
   border-radius: 25px 25px 0px 0px;
   overflow: hidden;
   padding-top: 37px;
   box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}


.value-card.red {
    border-top: 5px solid #b30000;
}

.value-card.yellow {
    border-top: 5px solid #d9a100;
}
.icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 95px;
    font-size: 42px;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    padding: 10px;
}

.red .icon-circle {
    background: #b30000;
}

.yellow .icon-circle {
    background: #d9a100;
}


.red h3 {color: #b30000;font-size: 21px;margin-top: 26px;}
.yellow h3 {color: #d9a100;font-size: 21px;margin-top: 26px;}

.value-card p {
    color: #555;
    padding: 0px 24px;

    line-height: 25px;
}

.value-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 80px 80px 0 0;
}

@media(max-width:768px){
    .title-section h2{
        font-size:38px;
    }

.value-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }
    .mv-card {
    padding: 15px;
}
    section.core-values {
    margin-top: 40px;
}
    .value-card p {
    padding: 0px 15px;
}
}