:root{
    --vm-blue:#083f78;
    --vm-dark:#062f5c;
    --vm-orange:#ff7a3d;
    --vm-text:#5f7188;
    --vm-muted:#8a9bad;
    --vm-border:#e7edf4;
    --vm-soft:#f6f9fc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f6f9fc;
    color:var(--vm-text);
    overflow-x:hidden;
}

.vm-modern-section{
    position:relative;
    padding:125px 0 125px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6fbff 45%,
            #eef6fb 100%
        );
}
/* Tüm tarayıcılar için kaydırma çubuğunu gizler */
html, body {
    /* Chrome, Safari, Edge ve Opera için */
    ::-webkit-scrollbar {
        display: none;
    }
    
    /* Firefox için */
    scrollbar-width: none;
    
    /* Internet Explorer ve eski Edge için */
    -ms-overflow-style: none;
}
.vm-container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

.vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:stretch;
}

.vm-image-area{
    position:relative;
    overflow:hidden;
    min-height:440px;
    border-radius:28px;
    box-shadow:0 24px 60px rgba(8,63,120,.13);
}

.vm-image-area::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            180deg,
            rgba(8,63,120,.04) 0%,
            rgba(8,63,120,.22) 44%,
            rgba(8,63,120,.76) 100%
        );
}

.vm-image-area img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.vm-image-content{
    position:absolute;
    left:36px;
    right:36px;
    bottom:36px;
    z-index:2;
    max-width:440px;
}

.vm-badge{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 15px;
    margin-bottom:16px;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:.3px;
}

.vm-image-content h1{
    color:#fff;
    font-size:34px;
    font-weight:var(--fw-bold);
    line-height:1.12;
    letter-spacing:-.035em;
}

.vm-image-content p{
    margin-top:16px;
    color:rgba(255,255,255,.82);
    font-size:var(--fs-md);
    font-weight:var(--fw-regular);
    line-height:1.75;
}

.vm-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    margin-top:22px;
    padding:0 22px;
    border-radius:999px;
    color:var(--vm-blue);
    background:#fff;
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    transition:.28s ease;
}

.vm-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    background:var(--vm-orange);
    box-shadow:0 16px 30px rgba(255,122,61,.28);
}

.vm-content-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.vm-top{
    margin-bottom:24px;
}

.vm-mini-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--vm-orange);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:2.4px;
    text-transform:uppercase;
}

.vm-mini-title::before{
    content:"";
    width:28px;
    height:2px;
    border-radius:999px;
    background:var(--vm-orange);
}

.vm-top h2{
    margin-top:14px;
    color:var(--vm-blue);
    font-size:38px;
    font-weight:var(--fw-bold);
    line-height:1.12;
    letter-spacing:-.04em;
}

.vm-top p{
    max-width:520px;
    margin-top:14px;
    color:var(--vm-text);
    font-size:var(--fs-md);
    line-height:1.75;
}

.vm-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.vm-card{
    position:relative;
    min-height:250px;
    padding:28px 24px;
    border-radius:24px;
    background:#fff;
    border:1px solid var(--vm-border);
    box-shadow:0 12px 32px rgba(8,63,120,.06);
    transition:.32s ease;
}

.vm-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 50px rgba(8,63,120,.10);
}

.vm-card.active{
    color:#fff;
    background:linear-gradient(180deg,#0a4a8c 0%,#083f78 100%);
    border-color:transparent;
}

.vm-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:14px;
    color:var(--vm-orange);
    background:#f6f9fd;
    font-size:18px;
}

.vm-card.active .vm-icon{
    color:#fff;
    background:linear-gradient(135deg,#ff7a3d,#ff9b66);
}

.vm-card h3{
    color:var(--vm-blue);
    font-size:26px;
    font-weight:var(--fw-bold);
    line-height:1.15;
    letter-spacing:-.025em;
}

.vm-card.active h3{
    color:#fff;
}

.vm-line{
    width:36px;
    height:3px;
    margin:16px 0;
    border-radius:999px;
    background:var(--vm-orange);
}

.vm-card p{
    color:var(--vm-text);
    font-size:var(--fs-md);
    line-height:1.75;
}

.vm-card.active p{
    color:rgba(255,255,255,.84);
}

@media(max-width:1100px){
    .vm-grid{
        grid-template-columns:1fr;
    }

    .vm-image-area{
        min-height:400px;
    }

    .vm-top h2{
        font-size:34px;
    }
}

@media(max-width:768px){
    .vm-modern-section{
        padding:90px 0 60px;
    }

    .vm-container{
        width:min(100% - 28px,1180px);
    }

    .vm-cards{
        grid-template-columns:1fr;
    }

    .vm-image-area{
        min-height:360px;
        border-radius:24px;
    }

    .vm-image-content{
        left:24px;
        right:24px;
        bottom:24px;
    }

    .vm-image-content h1{
        font-size:28px;
    }

    .vm-top h2{
        font-size:30px;
    }

    .vm-card{
        min-height:auto;
    }
}