* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(135deg, #e0e7ff, #f9fafb);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  color: #222;
}
.main-nav {
  background: #1e3a8a;
  color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #e0e7ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.profile-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.profile-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #3b82f6;
  margin-bottom: 1rem;
}

.profile-info h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
}

.profile-bio {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: 0.75rem;
  padding: 0 1rem;
}

.profile-time {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.social-links {
  margin-top: 1.8rem;
}

.social-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  text-decoration: none;
  color: #3b82f6;
  font-weight: 500;
  transition: color 0.25s ease;
}

.social-links a:hover {
  color: #1e40af;
}

.profile-sections {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.profile-list {
  background: #f3f4f6;
  border-radius: 0.75rem;
  padding: 1.2rem 1.5rem;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.profile-list h3 {
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.profile-list ul {
  list-style: none;
  color: #374151;
}

.profile-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.profile-list li:last-child {
  border-bottom: none;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Contact us styling */

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}

form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: border 0.25s ease;
}

input:focus,
textarea:focus {
  border-color: #1e3a8a;
}

button.submit-btn {
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

button.submit-btn:hover {
  background: #3746c1;
}

.error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.success-message {
  color: #16a34a;
  margin-top: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .profile-header {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .profile-info {
    text-align: left;
    flex: 1;
  }

  .profile-sections {
    justify-content: center;
    gap: 2rem;
  }
}

/*About styling*/

.about-page {
  max-width: 1000px;
  margin: 4rem auto 4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.about-header p {
  color: #4b5563;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-left: 5px solid #1e3a8a;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.about-section h2 {
  color: #1e3a8a;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.4rem;
  width: fit-content;
}

.about-section p,
.about-section li {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
}

.about-section ul {
  margin-top: 0.8rem;
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  background: #f3f4f6;
  margin-bottom: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-section ul li:hover {
  background: #e0e7ff;
  transform: translateX(6px);
}

.about-section.bio {
  border-left-color: #3b82f6;
}

.about-section.goals {
  border-left-color: #2563eb;
}

.about-section.confidence {
  border-left-color: #f59e0b;
}

.about-section.future-note {
  border-left-color: #10b981;
}

.about-section.extra {
  border-left-color: #8b5cf6;
}

@media (max-width: 768px) {
  .about-page {
    padding: 1rem;
    gap: 1.5rem;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-header h1 {
    font-size: 2rem;
  }
}
