body {
  margin: 0;
  font-family: "Noto Nastaliq Urdu", Arial, sans-serif;
  background: #ffffff;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff0f0;
}

.header,
.footer {
  width: 100%;
  text-align: center;
}

.top-banner,
.bottom-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.title {
  text-align: center;
  padding: 15px 10px;
  background-color: #ffdcdc;
}

.title h1 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: #0b6b3a;
}

.grid {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.icon {
  width: 100px;
  height: 120px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
}

.icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}


.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #0b6b3a;
  color: #fff;
  text-decoration: none;
}

/* Tablet */
@media (max-width:992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width:768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media (max-width:480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}