
/* Vizyonumuz stilleri */

.vision-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: auto;
    padding: 50px;
    margin: 0 0 100px;
    background-color: #f4f4f4;  
    border: 5px solid #cacaca;
    border-radius: 20px;

}

.vision .content {
    flex: 1;
}

.vision h2 {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    color: #00645f;   
}

.vision p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.vision .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision .image img {
    cursor: pointer;
    max-width: 70%;
    height: auto;
    margin-left: 35px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;   
}

.vision .image img:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

.vision .image img:active {
    transform: scale(0.96);
}

/* Mobil stili */

@media (max-width: 1080px) {
    .vision {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 100px;
    }

    .vision .content {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .vision h2 {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .vision p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .vision .image {
        width: 100%;
        margin-left: -35px;
    }

    .vision .image img {
        max-width: 100%;
    }
}

/* --------------------------------------------------------- */



