.scroll-effect {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.scroll-effect.visible {
    opacity: 1;
    transform: translateY(0);
}


/* scroll effect sonu */

.container-özellik {
    display: flex;
    width: 100%;
	
    margin: 50px auto;
    align-items: flex-start;
    justify-content: space-between;
}

.text-container {
    max-width: 400px;
    flex: 1; 
}

.accordion {
    width: 100%;
}

.accordion-item {
    margin-bottom: 20px;
	position: relative;
    transition: transform 0.5s ease-in-out; 
}
.accordion-item.active {
    animation: moveAccordion 0.5s ease-in-out;
}



.accordion-header {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.accordion-header.active {
    
    background-color: #ddd;
}

.accordion-content {
    font-size: 16px;
    color: #666;
    padding: 10px;
    display: none;
	font-weight: bold;
}

.accordion-content.active {
    display: block;
}

.image-container {
    max-width: 600px;
    position: relative;
    height: 400px; 
    overflow: hidden;
    flex: 1; 
	align-items: center;
}

.image-container img {
    width: 100%;
	position: absolute;
	transform: translate(-50%, -50%); 
	top: 50%;
	left: 50%;
    border-radius: 15px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.image-container img.active {
    opacity: 1;
}

.SectionPadding{
    padding: 75px 0px;
}

.BgLightGray{
    background-color: #f5faff;
}


.ozellikler {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    justify-content: space-between;
}

.ozellik1:hover{
    border-color: #0069f7 !important;
}
.ozellik2:hover{
    border-color: #bd5db7 !important;
}
.ozellik3:hover{
    border-color: #460770 !important;
}
.ozellik4:hover{
    border-color: #ff7d75 !important;
}
.ozellik5:hover{
    border-color: #1ad0a0 !important;
}

.ozellik-item {
    flex: 1 1 calc(25% - 10px);
    background-color: #f9f9f9;
    padding: 14px 18px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: 
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.ozellik-item:hover{
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    background-color: #ffffff;
    border-color: #1055cc;
}

.ozellik-item h5 {
    font-size: 1rem; 
    margin-bottom: 8px;
	font-weight: bold;
	word-wrap: break-word;  
    overflow-wrap: break-word;
    white-space: normal;
	
}

.ozellik-item p {
    
    font-size: 0.80em; 
    line-height: 1.4;
    margin-bottom: 0px;

	word-wrap: break-word;  
    overflow-wrap: break-word;
    white-space: normal; 
}

.ozellik-item:hover h5 {
    color: #1055cc;
}

.özellik-foto{
    height: auto !important;
    width: auto !important;
    border: none !important;
    border-radius: 10px !important;
/*     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
 */    padding: 0 !important;
}


@media (max-width:768px) {

    
    .image-container {

        max-width: 100%;
        position: relative;
        height: 200px;
        overflow: hidden;
        margin: 0 auto; 
        display: flex;
        justify-content: center; 
        align-items: center; 
    }

    #Baslik3 {
        padding: 0px;

    }

    .image-container img {
        max-width: 90%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        border-radius: 15px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

    .image-container img.active {
        opacity: 1;
    }

     

    .row {
        width: 105%;
        height: auto;
        align-items:center ;
    }
    
    .ozellik-item {
        width:100%;
        height: auto;

    }

    .ozellik-item h5 {
        font-size: 0.9em;
        margin-bottom: 8px;
        font-weight: bold;
        word-wrap: break-word;  
        overflow-wrap: break-word; 
        white-space: normal;
        
    }
    
    .ozellik-item p {
        font-size: 0.em; 
        line-height: 1.4;
    
        word-wrap: break-word;  
        overflow-wrap: break-word; 
        white-space: normal; 
    }
    .ozellikler {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
    }
    
    .resim-ortala {
        justify-content: center !important; 
    }

    .img-thumbnail {
        width: 100% !important;;
    }
    
    #marginTop {
     margin-top: 25px;
    }
    
    .container-özellik {
        display: flex;
        width: 100%;
        margin: 50px auto;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
    
    .SectionPadding{
        padding: 15px 0px;
    }

}