/* Tüm ikonlar için ortak özellikler */
.feature-image [class^="updateicon"] {
    position: absolute;
    width: 20%;
    z-index: 1;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Her ikon için özel pozisyonlar */
.feature-image .updateicon1 {
    top: 14%;
    left: 18%;
}

.feature-image .updateicon2 {
    top: 11%;
    left: 85%;
}

.feature-image .updateicon3 {
    top: 35%;
    left: 48%;
}

.feature-image .updateicon4 {
    top: 67%;
    left: 10%;
}

.feature-image .updateicon5 {
    top: 59%;
    left: 76%;
}

.feature-image .updateicon6 {
    top: 83%;
    left: 43%;
}

.feature-image .updateicon7 {
    top: 15%;
    left: 56%;
}

.feature-image .updateicon8 {
    top: 34%;
    left: 27%;
}

.feature-image .updateicon9 {
    top: 33%;
    left: 90%;
}

.feature-image .updateicon10 {
    top: 68%;
    left: 49%;
}

.feature-image .updateicon11 {
    top: 89%;
    left: 12%;
}

.feature-image .updateicon12 {
    top: 87%;
    left: 82%;
}

/* İkon arka plan stili */
.iconback {
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image .iconback:hover {
    width: 25%;
}

/* Tooltip stilleri */
.tooltip-container {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10000;
}

.tooltip-container.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-content {
        text-align: center;
    }

    .tooltip-container {
        position: fixed;
        pointer-events: none;
    }
}


.advantages-section {
    background-color: #f8f9fa;
}

.advantage-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Resim container'ı */
.advantage-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.advantage-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
}

/* İçerik kısmı */
.advantage-content {
    padding: 25px 20px;
}


/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .advantage-content {
        padding: 20px 15px;
    }

    .feature-new-left,
    .feature-new-right {
        margin-bottom: 30px;
        justify-content: center;
    }

    .center-image {
        margin: 30px 0;
    }
}

.feature-new-left,
.feature-new-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.new-item {
    width: 120px;
    height: 120px;
    padding: 10px;
    background: #fbfbfb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.center-image img {
    max-width: 82%;
    padding: 10px;
}

.border-green {
    border: 4px solid #90b229;
}


.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.flip-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card-front {
    background-color: #fff;
}

.flip-card-back {
    background-color: #f8f9fa;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.service-image:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-container {
    perspective: 1000px;
    width: 100%;
    min-height: 400px;
    /* Sabit bir yükseklik */
    position: relative;
}

/* Flipper ana container */
.flipper {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

/* Hover efekti */
.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

/* Ön ve arka yüzler için ortak stiller */
.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 5%;
}

/* Ön yüz stilleri */
.front {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front img {
    max-width: 100%;
    height: auto;
    border-radius: 5%;
}

/* Arka yüz stilleri */
.back {
    background: #90B229;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Arka yüz içerik stilleri */
.back-content {
    color: white;
    text-align: center;
    padding: 20px;
}

.back-content h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.logo .logo-green {
    margin-right: 35px;
    margin-top: 2px;
}

.back-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Center image container stilleri */
.center-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image img {
    max-width: 82%;
    height: auto;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .flip-container {
        min-height: 300px;
    }

    .back-content {
        padding: 19px 0;
    }

    .back-content h3 {
        font-size: 20px;
    }

    .back-content p {
        font-size: 14px;
    }

    .gif_image {
        top: 68px !important;
        left: 48px !important;
    }
}

.new-item {
    transition: all 0.3s ease;
    position: relative;
}

.new-item:active,
.new-item.active {
    transform: scale(1.2);
    /* box-shadow: 0 0 15px rgba(76, 175, 80, 0.6); */
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

.new-item.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #4CAF50, #69F0AE);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}