#whatsapp-button {
  position: fixed;
  bottom: 20px; /* Sayfanın altından ne kadar uzaklıkta olacağını belirleyin */
  left: 20px; /* Sol taraftan ne kadar uzaklıkta olacağını belirleyin */
  z-index: 9999; /* Üst sıraya getirin */
}






 .container-hizmet {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	 margin-bottom: 20px;
	
    
  }
  .header {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
	  
  }
  .stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 960px;
	  padding-bottom: 30px; /* Sayılar ile alt metin arasına boşluk ekler */
  }
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1em;
  }
  .number {
    font-size: 3em;
    font-weight: bold;
    color: #8c1413;
    margin-bottom: 0.25em;
  }
  .label {
    font-size: 1.2em;
    color: #666;
  }















/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter */
.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
}



















.gizli-link {
  position: absolute; /* Kapsayıcıya göre konumlandırır */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Saydamlık seviyesini sıfıra düşürerek tamamen görünmez yapar */
  z-index: 10; /* Diğer içeriğin üzerinde yer almasını sağlar */
}





/* Kart Döndürme için özel stiller */

.values-container {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    padding: 0 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    width: 100%;
}

.flip-card {
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.flip-card-front {
    background-color: #8c1413;
    color: white;
}

.flip-card-back {
    background-color: #f8f8f8;
    transform: rotateY(180deg);
    position: relative;
}

.hidden-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

 /* Mobil Uyumluluk CSS */

/* Tablet boyutu (768px ve altı) */
@media (max-width: 768px) {
    .values-container {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .flip-card {
        height: 220px;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1.1rem;
    }
    
    .flip-card-back p {
        font-size: 0.8rem;
    }
}

/* Küçük mobil (480px ve altı) */
@media (max-width: 480px) {
    .values-container {
        margin: 30px 0;
        padding: 0 10px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 300px;
    }
    
    .flip-card {
        height: 200px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1rem;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .flip-card-back p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .flip-card-front img {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.75rem;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media (max-width: 360px) {
    .cards-grid {
        max-width: 280px;
    }
    
    .flip-card {
        height: 180px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 0.8rem;
    }
}














.sayfa-ana {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }
        .ust-menu {
            background-color: #ffffff;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .sayfa-duzen {
            padding-top: 4rem; /* Ust menu yuksekligi */
        }
        .bolum-baslik {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
			
			
			
        }
        .baslik-ikon {
            font-size: 2rem;
            color: #8c1413;
			align-items: center;
			
			
			
        }
        .baslik {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            text-align: left;
		
			
        }
        .icerik {
            display: flex;
            flex-direction: column;
            gap: 2rem;
			
        }
        .metin {
            font-size: 1.125rem;
            line-height: 1.75;
            color: #6b7280;
            text-align: left;
			
			padding: 30px;
			
			 
        }
        .gorsel {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        @media (min-width: 768px) {
            .icerik {
                flex-direction: row;
                align-items: flex-start;
            }
            .metin {
                flex: 1;
            }
            .gorsel {
                flex: 1;
                margin-top: 0;
            }
        }