*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  background:#fff;
}

/* 1920 SABİT */
.page-1920{
  width:1920px;
  margin:0 auto;
}

/* ================= STATS ================= */
.stats-section{
  height:420px;
  background:#bfcfe9;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:120px;
}

/* Kart */
.stat-card{
  position:relative;
}

/* Daire */
.stat-circle{
  width:280px;
  height:280px;
  border-radius:50%;
  background:#e9eef6;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 40px rgba(0,0,0,.25);
}

/* Mavi halka */
.stat-circle::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:14px solid #2f5fa7;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%);
}

/* Arka plan örnekleri */
.bg-1{ background:url("images/export.jpg") center/cover no-repeat; }
.bg-2{ background:url("images/product.jpg") center/cover no-repeat; }
.bg-3{ background:url("images/factory.jpg") center/cover no-repeat; }

/* Yazılar */
.stat-text{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.78);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.stat-text strong{
  font-size:64px;
  font-weight:800;
  color:#3a3a3a;
}

.stat-text span{
  font-size:20px;
  color:#555;
  margin-top:8px;
}

/* Alt gölge */
.stat-shadow{
  width:220px;
  height:28px;
  background:rgba(0,0,0,.35);
  filter:blur(18px);
  border-radius:50%;
  position:absolute;
  bottom:-22px;
  left:50%;
  transform:translateX(-50%);
}
@media (max-width: 768px){

    .stats-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 60px 20px;
    }

    .stat-card{
        width: 100%;
        max-width: 280px;
    }

    .stat-circle{
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .stat-text strong{
        font-size: 42px;
    }

    .stat-text span{
        font-size: 15px;
    }

}
@media (max-width:768px){

    .stats-section{
        position: relative;
        padding: 80px 20px 100px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .stat-card{
        position: relative;
        width: 100%;
        max-width: 260px;
    }

}
@media (max-width:768px){

    .stat-circle{
        width:200px;
        height:200px;
        margin:0 auto;
    }

    .stat-text strong{
        font-size:38px;
    }

}
