/* Genel Ayarlar */

* {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red;   Kırmızı çerçeve */
}

body {
    font-family: Franklin Gothic Heavy,Tahoma;
    flex-direction: column;
}

.blokdiv {
    width: 95%;
   /* max-width: 1400px;*/
    padding: 40px;
    background-color: #00162c;
    border-radius: 5px;

    z-index: 0;
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 100px;
}

.mg-content h2 {
    font-size: 3rem;
    color: #00aced;
    margin-bottom: 20px;
    text-align:left;

}
.mg-content h4{
    font-size: 1.5rem;
    color: #00aced;
}

.mg-content p {
     font-family: Arial, sans-serif;
     color: #d3d3d3;
     font-size: 1.3rem;
     line-height: 1.8;
     margin-bottom: 10px;
     margin-left: 10px;
    text-indent: 20px;
 }
.altdiv {
    background:transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.altdiv h1 {
    color: #38bdf8; /* Parlak mavi */
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.altdiv h2 {
    color: #60a5fa; /* Daha açık mavi */
    font-size: 2rem;
    margin-top: 30px;
}

.altdiv h3 {
    color: #93c5fd; /* Daha açık bir mavi tonu */
    font-size: 1.8rem;
    margin-top: 20px;
}

.altdiv p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-indent: 20px; /* İlk satırda boşluk */
}

.altdiv ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: square;
}

.altdiv li {
    margin-bottom: 10px;
    color: #e0e0e0;
}
.altdiv hr{
    margin-top: 30px;
    margin-bottom: 30px;
    color: #0bbeff;!important;
    background-color: #0fff0e;
}
.altdiv strong {
    color: #facc15; /* Parlak sarı */
    font-weight: bold;
    display: block; /* Metni alt satıra geçirmek için blok eleman yap */
    margin-bottom: 10px; /* Altında biraz boşluk bırak */
}
.gradient-title {
    margin-top: 40px;
    padding: 10px; /* İçerik için biraz boşluk */
    text-align:left; /* Metni ortala */
    background: linear-gradient(to left, rgba(56, 189, 248, 0.15), #00162c); /* Sağdan sola geçişli renk */
    color: white; /* Metin rengi */
    border-radius: 8px; /* Kenarları yuvarla */
    font-size: 1.5rem; /* Yazı boyutunu büyüt */
}

.text-content {
    flex: 0 1 40%; /* Metin kısmının genişliğini daralttık */
    margin-right: 10px;
}

.text-content h4 {
    font-size: 1.5rem;
    color: #00aced;
    margin-bottom: 10px;
}

.text-content p {
    font-family: Arial, sans-serif;
    color: #f1f1f1;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 0.7px;/*  */
    font-weight: 100;
}
/* Resimlerin hover ve 3D dönüşüm efektleri */
.image-container{
    margin: auto;!important;
}
.image-container img {
    width: 100%;
    max-width: 300px;
    height:200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: auto;
margin-left: 5px;
}

.image-container img:hover {
    transform: perspective(500px) rotateY(10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Benzersiz Modal */
.modal-lsng {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.modal-lsng .close-btn-lsng {
    position: relative; /* Relative yerine Absolute */
    top: 5px; /* Modalın üstünden 10px boşluk bırak */
    left:35%; /* Modalın sağından 10px boşluk bırak */
    background-color: #ff0000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s;
}

.modal-lsng .close-btn-lsng:hover {
    background-color: #ff4d4d;
}

.modal-lsng img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

/* Mobil görünüm */
@media (max-width: 900px) {
    .mg-content{
        width: 100%;
        border-radius: 0;!important;
    }
    .modal-lsng img {
        max-width: 90%;
        max-height: 70%;
    }
    .blokdiv {
        width: 99%;
        padding: 1px;
        margin: auto;
        margin-top: 70px;

        border-radius: 0;!important;
    }

    .mg-content h2 {
        font-size: 1.4rem;
    }

    .text-content h4 {
        font-size: 1.1rem;
    }

    .text-content p,
    .mg-content p {
        font-size: 1rem;
    }




    .image-container {
        max-width: 100%;
        gap: 10px;
  margin: auto;
    }

    .image-container img {
        width: 46%;
        height:200px;
    }
    .image-container_trnst_ozl img{
        width: 100%;
        height:200px;
    }
    .altdiv {
        padding:0; /* Mobilde kenar boşluklarını optimize et */
    }

    .altdiv p {
        font-size: 1rem; /* Daha küçük yazı boyutu */
    }

    .altdiv ul {
        padding-left: 10px; /* Listeyi daralt */
    }
.icliste{
    margin-left: 1px;
    padding:5px;
}
.icdiv{
    width: 98%; margin: auto;

}
    .icdiv .mg-content .altdiv .lashing-list {
        /* background-color: lightblue; Özgüllük artırıldı */
        padding: 10px;
        margin: auto;
        width: 100%;
        margin-left: 3%;
        margin-right: 1%;
      position:relative;
        display: inline-block;
    }
    .icdiv .mg-content .altdiv .lashing-list ul {
 width: 100%;
        margin: auto;
    }
}
