/*
    KBSayac - İzole sayaç alanı
    Tüm sınıflar kbsayac- ile başlar.
    Diğer web site CSS kodlarıyla çakışma ihtimali düşüktür.
*/

.kbsayac-section,
.kbsayac-section * {
    box-sizing: border-box;
}

.kbsayac-section {
    width: 100%;
    padding: 60px 15px;
    background: #000000;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.kbsayac-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

.kbsayac-card {
    width: 33.333%;
    min-height: 150px;
    background: #ffffff;
    border-radius: 6px;
    padding: 28px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.kbsayac-icon {
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #f2f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kbsayac-icon span {
    display: block;
    font-size: 46px;
    line-height: 1;
}

.kbsayac-content {
    width: 100%;
}

.kbsayac-number {
    color: #151515;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.kbsayac-title {
    color: #000000;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
}

/* Arka plan rengini değiştirmek için sadece burayı değiştirin:
   .kbsayac-section { background: #000000; }
*/

@media (max-width: 991px) {
    .kbsayac-container {
        gap: 20px;
    }

    .kbsayac-card {
        padding: 24px 18px;
        gap: 16px;
    }

    .kbsayac-icon {
        width: 74px;
        min-width: 74px;
        height: 74px;
    }

    .kbsayac-icon span {
        font-size: 36px;
    }

    .kbsayac-number {
        font-size: 40px;
    }

    .kbsayac-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .kbsayac-section {
        padding: 35px 15px;
    }

    .kbsayac-container {
        flex-direction: column;
        max-width: 430px;
    }

    .kbsayac-card {
        width: 100%;
    }
}


.kbsayac-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.kbsayac-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(255,107,0,.18);
}



.kbsayac-icon{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    background:#ff6b00;      /* Turuncu */
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(255,107,0,.30);
}

.kbsayac-icon i{
    font-size:42px;
    color:#fff;
}
