/* Akordeon ana kapsayıcı */
.ackt-accordion {
    width: 100%;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer !important; /* Maus üzerine geldiğinde el işareti */
    background-color: transparent !important;
}

#logoacordion {
    width: 138px;
}
/* Akordeon öğeleri */
.ackt-item {
    width: 80%;
    margin: auto;
    margin-bottom: 15px; /* Divler arasında 10px boşluk */
    overflow: hidden;
    background-color: #002240;
!important;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 0 0 0.3px #0b75ae; /*  Çizgiyi hover'da da sabit tutar */
    color: #0bc3ff;

}

/* Başlık çubuğu */
.accordion-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: rgb(0, 14, 29);

}

.accordion-title-bar.active {
    background: rgb(0, 14, 39);
    color: #ffffff;
    border-bottom: 12px solid #0fff0e;
!important;
}

.accordion-title-bar:hover {
    background: rgb(0, 14, 39);
    z-index: 10;
}

.ackt-item.active {
    box-shadow: 0 0 9px 1px #002240; /*  !* Tıklama sonrası yeni gölge *!*/
}

.ackt-title h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #009acf;
}

.ackt-title h4 {
    margin: 10px 0 5px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #b2bbc2;
}

.accordion-title-bar .ackt-divider {
    width: 90%;
    height: 0.5px;
    background-color: #00103c !important;
    margin: 5px 0;
}

/* İkon stilleri */
.ackt-icon {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    transform: perspective(500px) translateZ(0); /* 3D perspektif */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    border-radius: 5%; /* Yuvarlak ikon görünümü */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

/* İkon hover efekti */
.ackt-icon:hover {
    transform: perspective(500px) translateZ(10px); /* Hover sırasında 3D yükselme */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Daha yoğun gölge efekti */
}

/* İkon ve başlık arasındaki alan */
.ackt-title {
    font-size: 1.5rem;
    flex-grow: 1;
    margin-left: 7%;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Toggle için 3D efekti */
.ackt-toggle {
    font-size: 30px;
    user-select: none;
    transform: perspective(500px) translateZ(0); /* İkon için 3D perspektif */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3); /* 3D metin gölgesi */
    transition: transform 0.3s ease;
    font-weight: 900;
}

/* Açılır içerik */
.indcontend {
    font-family: 'Roboto', sans-serif;
    padding: 0 15px; /* Başlangıçta padding sıfır */
    background-color: #00102b;
!important;
    max-height: 0; /* Başlangıçta içerik gizli */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease;
    margin-top: -10px;
    border-top: none;
    border-radius: 1px;

}

.indcontend p {
    font-size: 25px;
    color: #bfbfbf;
    margin-left: 100px;
    font-weight: normal;
    letter-spacing: 1px;
}

.indcontend a {
    color: #0ba7e3;
    text-decoration: none;
    font-size: 26px;
}

.indcontend.open {
    max-height: 800px; /* İçerik açıldığında maksimum yükseklik */
    padding: 15px; /* Açıldığında padding eklenir */
}

/* Liste stilleri */

.indcontend ul {
    list-style: none; /* Varsayılan liste işaretlerini kaldır */
    padding: 0; /* Liste boşluklarını kaldır */
    margin: 0;
    margin-left: 7%;
}

.indcontend ul li {
    position: relative; /* Özel işaret için pozisyon ayarla */
    padding-left: 25px; /* İşarete yer açmak için soldan boşluk bırak */
    margin-bottom: 10px; /* Liste elemanları arasında boşluk */
    font-size: 1.3rem; /* Yazı boyutu */
    line-height: 1.6; /* Satır arası boşluğu */
    color: #b3d9d3; /* Metin rengi */
}

.indcontend ul li::before {
     content: "\2605"; /* Unicode yıldız karakteri */
     position: absolute; /* Mutlak pozisyon */
     left: 0; /* Sol kenarda yer al */
     color: #00ff00; /* Yeşil renk */
     font-size: 0.8rem; /* Yıldızın boyutu */
     top:6px; /* Yıldızın dikey hizası */
 }

.indcontend p {
    font-size: 1.4rem;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
    .indcontend ul li::before {
        content: "\2605"; /* Unicode yıldız karakteri */
        position: absolute; /* Mutlak pozisyon */
        left: 0; /* Sol kenarda yer al */
        color: #31d155; /* Yeşil renk */
        font-size: 0.7rem; /* Yıldızın boyutu */
        top:2px; /* Yıldızın dikey hizası */
    }

    #logoacordion {
        width: 70px;
    }

    .ackt-accordion {
        background: transparent !important;
    }

    /* Akordeon öğeleri */
    .ackt-item {
        width: 98%;
        margin: auto;
        margin-bottom: 10px; /* Divler arasında 10px boşluk */
        overflow: hidden;
        /*background-color: #002240; !important;*/
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 0 0.3px #0b75ae; /*  Çizgiyi hover'da da sabit tutar */
        color: #0bc3ff;
    }

    /* Başlık çubuğu */
    .accordion-title-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*padding: 30px;*/
        height: 120px;

    }

    .accordion-title-bar:hover {
        background: rgb(0, 14, 29);
        transform: scale(1.01);
        z-index: 10;
    }

    .accordion-title-bar.active {
        background: rgb(0, 34, 64);
        color: #46ff1c;
        border-bottom: 1px solid #0fff0e;
    !important;
    }

    .ackt-item.active {
        box-shadow: 0 0 1px 1px #46ff1c; /* Tıklama sonrası yeni gölge */
    }

    .indcontend {
        background-color: #00162c;
    !important;
        width: 100%;
        margin: auto;
    }

    .ackt-icon {
        /* */
        max-width: 70px;
        min-width: 70px;

        max-height: 70px;
        min-height: 70px;
        margin-top: 50px;
    !important;
        margin-bottom: 50px;
    !important;
        margin-left: -10px;
        /*padding-top:30px;*/
    }

    .ackt-title h3 {
        font-size: 0.9rem !important; /* H3 etiketinin yazı boyutu küçültülür */
        line-height: 1; /* Satır yüksekliği ayarlanır */
        margin-left: -15px;
        letter-spacing: 1px;
    }

    .indcontend h3 {
        font-size: 16px !important; /* İçerikteki H3 başlıkları için yazı boyutu küçültülür */

    }

    .indcontend p {
        font-family: 'Arial', sans-serif; /* Daha temiz ve sade font */
        font-size: 1rem; /* Okunabilir font boyutu */
        color: #ffffff; /* Daha kontrast beyaz renk */
        font-weight: 300; /* Normal ağırlık */
        text-shadow: none; /* Gölge kullanılmıyor */
        letter-spacing: 0.5px; /* Harf aralığını artırarak netlik sağlar */
        line-height: 1.5; /* Satır yüksekliğiyle okunabilirlik artar */
        margin-left: 10px;
        width: 95%;
        text-indent: 20px;
        word-wrap: break-word;
    }

    .indcontend a {
        color: #82ffff;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .indcontend ul li {
        font-family: 'Arial', sans-serif; /* Daha temiz ve sade font */
        font-size: 0.9rem; /* Okunabilir font boyutu */
        color: #eff8ff;
    }

    .ackt-title h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
        color: #009acf;
    }

    .ackt-title h4 {
        margin: 10px 0 5px;
        font-weight: 400;
        font-size: 0.9rem;
        color: #b2bbc2;
    }
}


