.contact-page {
  padding: 3rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.subtitle {
  color: #666;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-profile {
  text-align: center; /* centers inline elements like img */
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the img horizontally */
  justify-content: center; /* optional, centers vertically if needed */
  margin-bottom: 2rem;
}

.admin-profile .profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007bff;
}

.admin-profile h3
 {
  color: #007bff; /* blue color */
  margin: 0.3rem 0;
}

.admin-profile p i {
  color: #007bff; /* icons also in blue */
}


.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000; /* black color for label */
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: #007bff;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Icons inside admin info */
.admin-profile p i {
  color: #007bff;
  font-size: 1.1rem;
}

/* Responsive */
@media(max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .admin-profile {
    padding-bottom: 2rem;
  }
}

.urdu-message {
    margin-top: 20px;
    padding: 15px 18px;
    background: #f9f9f9;
    border-left: 4px solid #000;
    border-radius: 8px;

    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 16px;
    line-height: 2.2;

    color: #000; /* BLACK color */

    direction: rtl;
    text-align: right;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
