.dua-hero{
  background:linear-gradient(135deg,#006B3F 0%, #005332 45%, #00A86B 100%);
  color:#fff;
  padding:70px 0 55px;
}
.dua-hero-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.dua-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}
.dua-hero h1{
  font-size:40px;
  margin-bottom:10px;
  line-height:1.2;
}
.dua-hero p{
  font-size:17px;
  opacity:.95;
}
.dua-section{
  padding:45px 0 70px;
}
.section-head{
  text-align:center;
  margin-bottom:25px;
}
.section-head h2{
  font-size:32px;
  margin-bottom:8px;
}
.section-head p{
  color:#64748b;
}
.dua-category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.dua-category-card{
  display:block;
  background:#fff;
  border-radius:22px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.25s ease;
}
.dua-category-card:hover{
  transform:translateY(-5px);
}
.dua-category-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:linear-gradient(135deg,#006B3F,#00A86B);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
}
.dua-category-card h3{
  font-size:22px;
  color:#173b2d;
  margin-bottom:10px;
}
.dua-category-card p{
  color:#475569;
  line-height:1.8;
}
.dua-list{
  display:grid;
  gap:18px;
}
.dua-card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.dua-head{
  margin-bottom:12px;
}
.dua-head h3{
  color:#006B3F;
  font-size:22px;
}
.dua-arabic{
  font-size:30px;
  line-height:2;
  text-align:right;
  margin-bottom:14px;
  color:#173b2d;
  font-weight:600;
}
.dua-translit{
  font-size:16px;
  color:#64748b;
  line-height:1.8;
  margin-bottom:12px;
  font-style:italic;
  background:#f8fbf9;
  padding:12px;
  border-radius:12px;
}
.dua-bangla{
  font-size:17px;
  line-height:1.9;
  color:#334155;
  background:#f8fbf9;
  border-radius:14px;
  padding:14px;
}
@media(max-width:1100px){
  .dua-category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:700px){
  .dua-category-grid{
    grid-template-columns:1fr;
  }
  .dua-hero h1{
    font-size:30px;
  }
  .dua-arabic{
    font-size:24px;
  }
}