body {
  font-family: 'Noto Nastaliq Urdu', serif;
}


/* start header css */
/* Header Styling */
.main-header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-radius: 8px;
}

.main-header a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-header a:hover {
  color: #f39c12; /* golden hover */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

/* Mobile view */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .main-header a {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}

/* end header css */

/* About Section */
.about-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 20px;
  line-height: 50px;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}


.about-btns {
  margin-top: 30px;
}

.about-btns .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #007BFF;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.about-btns .btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 4rem;
  }
  .about-section p {
    font-size: 18px;
  }

  .about-btns .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
