/* ===== RESET ===== */
*{margin:0;padding:0;box-sizing:border-box}
html,body{overflow-x:hidden}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us{
  background:#0a1f44;
  padding:90px 20px;
  color:#ffffff;
}

.wcu-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}

/* LEFT CONTENT */
.wcu-left h2{
  font-size:44px;
  font-weight:800;
  color:#ffd000;
  margin-bottom:20px;
}

.wcu-name{
  font-size:30px;
  color:#ff3b3b;
  margin-bottom:20px;
}

.wcu-left p{
  font-size:17px;
  line-height:1.8;
  color:#e6e6e6;
  margin-bottom:18px;
  max-width:520px;
}

.wcu-call-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 26px;
  background:#e83e8c;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
  border-radius:8px;
}

/* RIGHT SIDE CIRCLES */
.wcu-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

/* CIRCLE CARD */
.wcu-circle{
  width:260px;
  height:260px;
  border-radius:50%;
  padding:30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#111;
  margin:auto;
}

.wcu-circle h4{
  font-size:18px;
  margin:12px 0 8px;
  font-weight:800;
}

.wcu-circle p{
  font-size:14px;
  line-height:1.6;
}

/* ICON */
.wcu-icon{
  font-size:32px;
}

/* COLORS */
.circle-orange{background:#ff5a2f}
.circle-blue{background:#3fc3ff}
.circle-green{background:#2ea84a}
.circle-yellow{background:#ffcc00}

/* ===== MOBILE ===== */
@media(max-width:900px){
  .wcu-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .wcu-right{
    grid-template-columns:1fr;
  }

  .wcu-circle{
    width:240px;
    height:240px;
  }
}
p {
  font-size: 18px;
}