.profile-wrapper {
  min-height: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
 
  justify-content: center;


}

.profile-glass {
  width: 100%;
  max-width: 850px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
  padding: 35px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

.profile-header h2 {
  margin: 0;
  font-size: 26px;
}

.profile-header p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 14px;
}

.profile-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.tab-btn {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #f1f5f9;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
  background: #e0e7ff;
}

.tab-btn.active {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.profile-body {
  padding-top: 10px;
}

.profile-form.modern {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.edit-profile-center {
  display: flex;
  justify-content: center;
}

.primary-btn.glow {
  width: 100%;
  margin-top: 35px; /* 👈 pehle 20px tha, ab thora niche */
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}
