/* -------- Profile Page Styling -------- */

.profile-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  margin-top: 30px;
  text-align: center;
}

.profile-section .hero-text {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
}

.profile-section .hero-sub {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.profile-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
 
}

.profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff831; /* VIXOR red */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Profile Card */
.profile-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  text-align: left;
  margin: auto;
  max-width: 500px;
  font-size: 1rem;
}

.profile-card p {
  margin: 15px 0;
  color: #333;
  font-weight: 500;
}

.profile-card strong {
  color: #111;
}

/* Buttons */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #ff3131;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.hero-btn:hover {
  background-color: #d60c0c;
}

/* Reuse existing Navbar/Footer styles from landing.css */
